We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 052eec2 commit ee85314Copy full SHA for ee85314
1 file changed
.github/workflows/ci.yml
@@ -141,14 +141,14 @@ jobs:
141
MCPP=$(realpath "$(find target -type f -name mcpp -printf '%T@ %p\n' | sort -rn | head -1 | cut -d' ' -f2)")
142
# Install LLVM toolchain into mcpp's sandbox
143
"$MCPP" toolchain install llvm 20.1.7
144
- # Verify install succeeded
145
- "$MCPP" toolchain list | grep -q llvm
+ # Set as default so the build picks it up
+ "$MCPP" toolchain default llvm@20.1.7
146
# Build a hello-world project with the installed toolchain
147
TMP=$(mktemp -d)
148
cd "$TMP"
149
"$MCPP" new hello
150
cd hello
151
- "$MCPP" build --toolchain llvm@20.1.7
+ "$MCPP" build
152
"$MCPP" run
153
154
- name: Fresh user experience (xlings install mcpp → new → run)
0 commit comments