Skip to content

Commit

Permalink
GHA: Fix GCC 13 job
Browse files Browse the repository at this point in the history
`cxxflags` must be a string type not an array or it will be expanded as:
```
  if [ -n "Array" ]
  then
      B2_ARGS+=("cxxflags=Array")
  fi
```

Fixes #246
  • Loading branch information
Flamefire authored Dec 28, 2024
1 parent 8fbdb8a commit 135d9d7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,7 @@ jobs:
os: ubuntu-24.04
install:
- g++-13-multilib
cxxflags:
- "-fexcess-precision=fast"
cxxflags: -fexcess-precision=fast

# Linux, clang
- toolset: clang
Expand Down

0 comments on commit 135d9d7

Please sign in to comment.