3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-09-02 08:10:46 +00:00
This commit is contained in:
KrystalDelusion 2025-08-01 10:40:18 +12:00 committed by GitHub
commit 2769b52e38
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 199 additions and 22 deletions

View file

@ -161,6 +161,40 @@ jobs:
run: |
find tests/**/*.err -print -exec cat {} \;
test-cells:
name: Run test_cell
runs-on: ubuntu-latest
needs: [build-yosys, pre_job]
if: needs.pre_job.outputs.should_skip != 'true'
env:
CC: clang
steps:
- name: Checkout Yosys
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup environment
uses: ./.github/actions/setup-build-env
- name: Download build artifact
uses: actions/download-artifact@v4
with:
name: build-ubuntu-latest
- name: Uncompress build
shell: bash
run:
tar -xvf build.tar
- name: test_cell
shell: bash
run: |
./yosys -p 'test_cell all'
./yosys -p 'test_cell -nosat -aigmap $pow $pmux'
./yosys -p 'test_cell -nosat -aigmap $eqx $nex $bweqx'
./yosys -p 'test_cell -aigmap $buf'
test-docs:
name: Run docs tests
runs-on: ${{ matrix.os }}