3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-02-14 12:51:48 +00:00

Makefile: test target requires unit-test, add vanilla-test for old test target

This commit is contained in:
Emil J. Tywoniak 2026-02-09 23:16:47 +01:00
parent 8bbde80e02
commit ff9cd0eed7
5 changed files with 47 additions and 26 deletions

View file

@ -65,7 +65,7 @@ jobs:
- name: Run tests
shell: bash
run: |
make -j$procs test TARGETS= EXTRA_TARGETS=
make -j$procs vanilla-test TARGETS= EXTRA_TARGETS=
- name: Report errors
if: ${{ failure() }}
@ -76,4 +76,4 @@ jobs:
- name: Run unit tests
shell: bash
run: |
make -j$procs unit-test ENABLE_LIBYOSYS=1
make -j$procs unit-test

View file

@ -68,7 +68,7 @@ jobs:
- name: Run Yosys tests
run: |
make -j$procs test
make -j$procs vanilla-test
- name: Run Verific specific Yosys tests
run: |
@ -83,7 +83,7 @@ jobs:
- name: Run unit tests
shell: bash
run: |
make -j$procs unit-test ENABLE_LTO=1 ENABLE_LIBYOSYS=1
make -j$procs unit-test ENABLE_LTO=1
test-pyosys:
needs: pre-job