From 135d9d7815bb29a3eec416f8d7827ef6c10600ee Mon Sep 17 00:00:00 2001 From: Alexander Grund Date: Sat, 28 Dec 2024 16:59:37 +0100 Subject: [PATCH] GHA: Fix GCC 13 job `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 --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8b321555..a4fce520 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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