mirror of https://github.com/YosysHQ/yosys.git
ci: Use correct build artifact
This commit is contained in:
parent
c630f995d5
commit
1e6e25c81f
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue