We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9723664 commit b986882Copy full SHA for b986882
1 file changed
.github/workflows/ci-windows.yml
@@ -56,7 +56,11 @@ jobs:
56
export PATH="$USERPROFILE/.xlings/subos/default/bin:$PATH"
57
echo "$USERPROFILE/.xlings/subos/default/bin" >> "$GITHUB_PATH"
58
xlings.exe --version
59
- xlings.exe install mcpp -y
+ xlings.exe install mcpp -y || {
60
+ echo "::error::xlings install mcpp failed"
61
+ echo "Retrying with explicit version..."
62
+ xlings.exe install mcpp@0.0.17 -y
63
+ }
64
MCPP="$USERPROFILE/.xlings/subos/default/bin/mcpp.exe"
65
test -f "$MCPP" || MCPP="$USERPROFILE/.xlings/subos/default/bin/mcpp"
66
test -f "$MCPP"
0 commit comments