Skip to content

Commit 6142c1e

Browse files
authored
CI Fixes (#803)
* Remove Mac OS 13 from CI * Pin Bazel version.
1 parent 92ca918 commit 6142c1e

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

.bazelversion

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
8.2.1

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
strategy:
113113
matrix:
114114
# Build each combination of OS and release/debug variants
115-
os: [ "ubuntu-24.04", "ubuntu-22.04", "macos-13", "macos-14", "macos-15" ]
115+
os: [ "ubuntu-24.04", "ubuntu-22.04", "macos-14", "macos-15" ]
116116
build-type: [ "Release", "Debug" ]
117117
# Don't abort runners if a single one fails
118118
fail-fast: false
@@ -129,13 +129,13 @@ jobs:
129129
- run: bazel build -c opt //:snmalloc
130130
- run: bazel build -c opt //:snmalloc-rs
131131
- run: bazel test -c opt --config=asan //fuzzing:snmalloc_fuzzer
132-
if: ${{ matrix.os != 'macos-13' && matrix.os != 'macos-14' && matrix.os != 'macos-15' }}
132+
if: ${{ matrix.os != 'macos-14' && matrix.os != 'macos-15' }}
133133

134134
# If this looks remarkably familiar, that's because it is. Sigh.
135135
macos:
136136
strategy:
137137
matrix:
138-
os: [ "macos-13", "macos-14", "macos-15" ]
138+
os: [ "macos-14", "macos-15" ]
139139
build-type: [ "Release", "Debug" ]
140140
extra-cmake-flags: [ "", "-DSNMALLOC_USE_CXX17=ON" ]
141141
fail-fast: false

0 commit comments

Comments
 (0)