From e1e57ade57f9ba0e7a38099ae074369f1d3b8ebb Mon Sep 17 00:00:00 2001 From: Akash Levy Date: Sat, 19 Oct 2024 14:49:35 -0700 Subject: [PATCH] Fix actions --- .github/workflows/codeql.yml | 2 +- .github/workflows/test-build.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 2acfc22f1..3a9f0b01d 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -25,7 +25,7 @@ jobs: queries: security-extended,security-and-quality - 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 uses: github/codeql-action/analyze@v3 diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index a8edf6afd..19e182222 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -56,8 +56,8 @@ jobs: run: | mkdir build cd build - make -f ../Makefile config-$CC ENABLE_PYOSYS=0 - make -f ../Makefile -j$procs ENABLE_LTO=1 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 ENABLE_CCACHE=0 ENABLE_EDITLINE=0 - name: Log yosys-config output run: | @@ -146,7 +146,7 @@ jobs: - name: Run tests shell: bash 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 if: ${{ failure() }}