mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-18 01:02:19 +00:00
ci: Use correct build artifact
This commit is contained in:
parent
c630f995d5
commit
1e6e25c81f
1 changed files with 6 additions and 2 deletions
8
.github/workflows/test-build.yml
vendored
8
.github/workflows/test-build.yml
vendored
|
@ -163,11 +163,15 @@ jobs:
|
||||||
|
|
||||||
test-cells:
|
test-cells:
|
||||||
name: Run test_cell
|
name: Run test_cell
|
||||||
runs-on: ubuntu-latest
|
runs-on: ${{ matrix.os }}
|
||||||
needs: [build-yosys, pre_job]
|
needs: [build-yosys, pre_job]
|
||||||
if: needs.pre_job.outputs.should_skip != 'true'
|
if: needs.pre_job.outputs.should_skip != 'true'
|
||||||
env:
|
env:
|
||||||
CC: clang
|
CC: clang
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest]
|
||||||
|
sanitizer: [undefined]
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Yosys
|
- name: Checkout Yosys
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
@ -180,7 +184,7 @@ jobs:
|
||||||
- name: Download build artifact
|
- name: Download build artifact
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: build-ubuntu-latest
|
name: build-${{ matrix.os }}-${{ matrix.sanitizer }}
|
||||||
|
|
||||||
- name: Uncompress build
|
- name: Uncompress build
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue