Skip to content

Commit e149e7f

Browse files
committed
fix(ci): use $MCPP variable in fresh user experience steps
ci.yml and ci-macos.yml used bare `mcpp` command which is not in PATH. ci-windows.yml already used `"$MCPP"` correctly. Align all three workflows to use the env variable set during bootstrap.
1 parent a678082 commit e149e7f

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci-macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,6 @@ jobs:
323323
# May fail if xlings mcpp version lacks recent fixes.
324324
TMP=$(mktemp -d)
325325
cd "$TMP"
326-
mcpp new hello
326+
"$MCPP" new hello
327327
cd hello
328-
mcpp run
328+
"$MCPP" run

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,6 @@ jobs:
141141
# May fail if xlings mcpp version lacks recent fixes.
142142
TMP=$(mktemp -d)
143143
cd "$TMP"
144-
mcpp new hello
144+
"$MCPP" new hello
145145
cd hello
146-
mcpp run
146+
"$MCPP" run

0 commit comments

Comments
 (0)