Skip to content

Commit

Permalink
fixup! 7025300
Browse files Browse the repository at this point in the history
  • Loading branch information
habnabit committed Jul 4, 2024
1 parent 7025300 commit 0a79abf
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,15 @@ jobs:
steps:
- uses: 'actions/checkout@v3'
- name: 'install clang'
if: '${{ matrix.cc == "clang" }}'
if: |
${{ matrix.cc == 'clang' }}
run: |
sudo apt-get install -y clang
echo >> "$GITHUB_ENV" 'CC=clang'
echo >> "$GITHUB_ENV" 'LDSHARED=clang -shared'
- name: 'install gcc'
if: '${{ matrix.cc == "gcc" }}'
if: |
${{ matrix.cc == 'gcc' }}
run: |
sudo apt-get install -y gcc
echo >> "$GITHUB_ENV" 'CC=gcc'
Expand Down

0 comments on commit 0a79abf

Please sign in to comment.