Skip to content

Commit

Permalink
[ci] misunderstood weird github actions syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
harrand committed May 18, 2024
1 parent 459e935 commit ef55645
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
id: set_compiler
run: |
if [ "${{ matrix.compiler }}" == "gcc-13" ]; then
echo "{cxx_compiler}={g++-13}" >> $GITHUB_OUTPUT
echo "cxx_compiler=g++-13" >> $GITHUB_OUTPUT
elif [ "${{ matrix.compiler }}" == "clang-18" ]; then
echo "{cxx_compiler}={clang++-18}" >> $GITHUB_OUTPUT
echo "cxx_compiler=clang++-18" >> $GITHUB_OUTPUT
fi
- name: 'Configure psyc ${{ matrix.compiler }}_${{ matrix.build_config }}'
Expand Down

0 comments on commit ef55645

Please sign in to comment.