Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
martinpitt committed Feb 13, 2024
1 parent 3a8e1d5 commit 79e4ed3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ jobs:
- { make: 'pytest-cov', cc: 'gcc' }
fail-fast: false
timeout-minutes: 60
env:
FORCE_COLOR: 1
TEST_BROWSER: firefox
CFLAGS: '-O2 -gdwarf-4'
steps:
# https://github.blog/2022-04-12-git-security-vulnerability-announced/
- name: Pacify git's permission check
Expand All @@ -37,8 +41,4 @@ jobs:
# HACK: -gdwarf-4 is for clang: https://bugs.kde.org/show_bug.cgi?id=452758
run: |
./autogen.sh
env FORCE_COLOR=1 \
CC='${{ matrix.scenario.cc }}' \
TEST_BROWSER=firefox \
CFLAGS='-O2 -gdwarf-4' \
make -j$(nproc) '${{ matrix.scenario.make }}'
make -j$(nproc) CC='${{ matrix.scenario.cc }}' ${{ matrix.scenario.make }}'

0 comments on commit 79e4ed3

Please sign in to comment.