Skip to content

Commit 6ae96f8

Browse files
committed
swap runner order, clarify comments
1 parent c888a51 commit 6ae96f8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,17 +154,17 @@ jobs:
154154
runs-on: ${{ matrix.os }}
155155
strategy:
156156
matrix:
157-
os: [macos-15-intel, macos-14]
157+
os: [macos-14, macos-15-intel]
158158
fail-fast: false
159159
env:
160160
CC: clang
161161
CPP: clang++
162162
# needed for Homebrew 4.6.4 and above
163163
HOMEBREW_DEVELOPER: '1'
164-
# Used by CI file. For mapping from "runs-on" / "os" to architecture, see:
164+
# Used by CI workflow file. For mapping from "runs-on" / "os" to architecture, see:
165165
# https://docs.github.com/en/actions/how-tos/write-workflows/choose-where-workflows-run/choose-the-runner-for-a-job#standard-github-hosted-runners-for-public-repositories
166166
SELFARCH: ${{ matrix.os == 'macos-15-intel' && 'X64' || 'ARM64' }}
167-
# Just because we use a new builder, doesn't mean we don't want the output to run on older OS
167+
# Just because we use a new builder doesn't mean we don't want the build to run on an older OS
168168
MACOSX_DEPLOYMENT_TARGET: 11.0.0
169169
steps:
170170
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)