3
0
Fork 0
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:
Krystine Sherwin 2025-08-12 12:43:14 +12:00
parent c630f995d5
commit 1e6e25c81f
No known key found for this signature in database

View file

@ -163,11 +163,15 @@ jobs:
test-cells:
name: Run test_cell
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
needs: [build-yosys, pre_job]
if: needs.pre_job.outputs.should_skip != 'true'
env:
CC: clang
strategy:
matrix:
os: [ubuntu-latest]
sanitizer: [undefined]
steps:
- name: Checkout Yosys
uses: actions/checkout@v4
@ -180,7 +184,7 @@ jobs:
- name: Download build artifact
uses: actions/download-artifact@v4
with:
name: build-ubuntu-latest
name: build-${{ matrix.os }}-${{ matrix.sanitizer }}
- name: Uncompress build
shell: bash