Skip to content

Commit bc2887e

Browse files
committed
Merge branch 'macos-15-native-test' of github.com:roc-lang/basic-cli into macos-15-native-test
2 parents 7616aa7 + ba107cc commit bc2887e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
if: startsWith(matrix.os, 'ubuntu-')
6767
run: |
6868
sudo apt-get install -y musl-tools
69-
if [[ "${{ matrix.operating-system }}" == *"-arm" ]]; then
69+
if [[ "${{ matrix.os }}" == *"-arm" ]]; then
7070
# TODO re-enable once TODO below is done: rustup target add aarch64-unknown-linux-musl
7171
echo "no-op"
7272
else
@@ -78,7 +78,7 @@ jobs:
7878
env:
7979
ROC: ./roc_nightly/roc
8080
run: |
81-
if [[ "${{ matrix.operating-system }}" == *"-arm" ]]; then
81+
if [[ "${{ matrix.os}}" == *"-arm" ]]; then
8282
# TODO debug this: CARGO_BUILD_TARGET=aarch64-unknown-linux-musl $ROC build.roc
8383
echo "no-op"
8484
else
@@ -89,6 +89,6 @@ jobs:
8989
if: startsWith(matrix.os, 'ubuntu-')
9090
run: |
9191
# TODO remove `if` when above TODOs are done
92-
if [[ "${{ matrix.operating-system }}" != *"-arm" ]]; then
92+
if [[ "${{ matrix.os }}" != *"-arm" ]]; then
9393
NO_BUILD=1 IS_MUSL=1 ROC=./roc_nightly/roc EXAMPLES_DIR=./examples/ ./ci/all_tests.sh
9494
fi

0 commit comments

Comments
 (0)