Skip to content

Commit 9ce5695

Browse files
authored
Move scan-build task from macos-14 to macos-14-arm64 (#1799)
1 parent 7a917e1 commit 9ce5695

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.evergreen/config_generator/components/scan_build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# pylint: disable=line-too-long
1919
# fmt: off
2020
MATRIX = [
21-
('macos-14', 'clang', None ),
21+
('macos-14-arm64', 'clang', None ),
2222
('ubuntu2004-arm64', 'clang', None ),
2323
('ubuntu2004', 'clang', 'i686'),
2424
]

.evergreen/generated_configs/tasks.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4916,9 +4916,9 @@ tasks:
49164916
- func: bootstrap-mongo-orchestration
49174917
- func: run-simple-http-server
49184918
- func: run-tests
4919-
- name: scan-build-macos-14-clang
4920-
run_on: macos-14
4921-
tags: [scan-build-matrix, macos-14, clang]
4919+
- name: scan-build-macos-14-arm64-clang
4920+
run_on: macos-14-arm64
4921+
tags: [scan-build-matrix, macos-14-arm64, clang]
49224922
commands:
49234923
- func: find-cmake-latest
49244924
- func: scan-build

.evergreen/scripts/compile-scan-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ if [[ -d /usr/local/Cellar/llvm ]]; then
126126
done
127127
fi
128128

129-
if command -v scan-build && clmmand -v clang && command -v clang++; then
129+
if command -v scan-build && command -v clang && command -v clang++; then
130130
scan_build_binary="scan-build"
131131
CC="clang"
132132
CXX="clang++"

0 commit comments

Comments
 (0)