3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-22 05:43:40 +00:00

Fix actions

This commit is contained in:
Akash Levy 2024-10-19 14:49:35 -07:00
parent 858ac2de99
commit e1e57ade57
2 changed files with 4 additions and 4 deletions

View file

@ -25,7 +25,7 @@ jobs:
queries: security-extended,security-and-quality queries: security-extended,security-and-quality
- name: Build - name: Build
run: make yosys -j6 ENABLE_PYOSYS=0 ENABLE_CCACHE=0 run: make yosys -j6 ENABLE_PYOSYS=0 ENABLE_CCACHE=0 ENABLE_EDITLINE=0
- name: Perform CodeQL Analysis - name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3 uses: github/codeql-action/analyze@v3

View file

@ -56,8 +56,8 @@ jobs:
run: | run: |
mkdir build mkdir build
cd build cd build
make -f ../Makefile config-$CC ENABLE_PYOSYS=0 make -f ../Makefile config-$CC ENABLE_PYOSYS=0 ENABLE_CCACHE=0 ENABLE_EDITLINE=0
make -f ../Makefile -j$procs ENABLE_LTO=1 ENABLE_PYOSYS=0 make -f ../Makefile -j$procs ENABLE_LTO=1 ENABLE_PYOSYS=0 ENABLE_CCACHE=0 ENABLE_EDITLINE=0
- name: Log yosys-config output - name: Log yosys-config output
run: | run: |
@ -146,7 +146,7 @@ jobs:
- name: Run tests - name: Run tests
shell: bash shell: bash
run: | run: |
make -j$procs test TARGETS= EXTRA_TARGETS= CONFIG=$CC ENABLE_PYOSYS=0 ENABLE_CCACHE=0 make -j$procs test TARGETS= EXTRA_TARGETS= CONFIG=$CC ENABLE_PYOSYS=0 ENABLE_CCACHE=0 ENABLE_EDITLINE=0
- name: Report errors - name: Report errors
if: ${{ failure() }} if: ${{ failure() }}