3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-10-09 17:31:59 +00:00

Enable unit tests

This commit is contained in:
Miodrag Milanovic 2025-09-22 18:41:44 +02:00
parent d4e3bfc265
commit 2f609a3136
2 changed files with 10 additions and 0 deletions

View file

@ -113,3 +113,8 @@ jobs:
shell: bash
run: |
find tests/**/*.err -print -exec cat {} \;
- name: Run unit tests
shell: bash
run: |
make -j$procs unit-test CONFIG=$CC ENABLE_LIBYOSYS=1

View file

@ -78,3 +78,8 @@ jobs:
if: ${{ github.ref == 'refs/heads/main' }}
run: |
make -C sby run_ci
- name: Run unit tests
shell: bash
run: |
make -j$procs unit-test ENABLE_LTO=1 ENABLE_LIBYOSYS=1