Skip to content

Commit 37b2991

Browse files
committed
Use right toolchain for preset name
1 parent 405286d commit 37b2991

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ jobs:
6464
[[ ${CLANG_VERSION} = 17 ]] && sudo apt-get install libc++-dev libc++1 libc++abi-dev libc++abi1
6565
find /usr/lib/x86_64-linux-gnu/ -name libc++.so* || true
6666
clang++-${CLANG_VERSION} --version
67+
type clang++-${CLANG_VERSION}
6768
- name: Install GCC
6869
if: startsWith(matrix.config.name, 'Ubuntu GCC')
6970
run: |
@@ -77,6 +78,7 @@ jobs:
7778
sudo apt-get install g++-${GCC_VERSION} gcc-${GCC_VERSION}
7879
find /usr/lib/x86_64-linux-gnu/ -name libstdc++.so*
7980
g++-${GCC_VERSION} --version
81+
type g++-${GCC_VERSION}
8082
- name: CMake Configure
8183
run: |
8284
set -x
@@ -110,4 +112,4 @@ jobs:
110112
- name: CMake Debug Workflow
111113
run: |
112114
set -x
113-
cmake --workflow --preset clang-19
115+
cmake --workflow --preset ${{ matrix.config.toolchain }}

0 commit comments

Comments
 (0)