@@ -6,7 +6,7 @@ pipeline {
6
6
}
7
7
8
8
parameters {
9
- string(name : ' LABEL' , defaultValue : params. LABEL ?: ' macos-x86_64 ' , description : ' Node label to run on' )
9
+ string(name : ' LABEL' , defaultValue : params. LABEL ?: ' macos-arm64 ' , description : ' Node label to run on' )
10
10
11
11
string(name : ' GIT_SHA' , defaultValue : params. GIT_REVISION ?: ' */main' , description : ' Git commit to build.' )
12
12
@@ -21,7 +21,7 @@ pipeline {
21
21
}
22
22
}
23
23
environment {
24
- MATRIX_COMMON_BUILD_PARAMETERS = ' --cmake-flag=-DLLVM_TARGETS_TO_BUILD=X86'
24
+ MATRIX_COMMON_BUILD_PARAMETERS = ' --cmake-flag=-DLLVM_TARGETS_TO_BUILD=X86;AArch64 '
25
25
PATH = " $PATH :/usr/bin:/usr/local/bin"
26
26
}
27
27
stages {
@@ -102,7 +102,7 @@ pipeline {
102
102
--runtimes="libcxx;libcxxabi;libunwind" \
103
103
--cmake-type=Release \
104
104
--dotest-flag="--skip-category gmodules" \
105
- --dotest-flag="--arch=x86_64 "
105
+ --dotest-flag="--arch=arm64 "
106
106
'''
107
107
script {
108
108
def LLDB = new org.swift.LLDB()
@@ -129,11 +129,11 @@ pipeline {
129
129
--dotest-flag="gmodules" \
130
130
--dotest-flag="--skip-category" \
131
131
--dotest-flag="watchpoint" \
132
- --dotest-flag="--skip-category" \
133
- --dotest-flag="llgs" \
134
- --dotest-flag="--skip-category" \
135
- --dotest-flag="debugserver" \
136
- --dotest-flag="--arch=x86_64 " \
132
+ --dotest-flag="--skip-category" \
133
+ --dotest-flag="llgs" \
134
+ --dotest-flag="--skip-category" \
135
+ --dotest-flag="debugserver" \
136
+ --dotest-flag="--arch=arm64 " \
137
137
--dotest-flag="--dwarf-version=2"
138
138
139
139
# Give the system some time to recover.
@@ -165,7 +165,7 @@ pipeline {
165
165
--dotest-flag="llgs" \
166
166
--dotest-flag="--skip-category" \
167
167
--dotest-flag="debugserver" \
168
- --dotest-flag="--arch=x86_64 " \
168
+ --dotest-flag="--arch=arm64 " \
169
169
--dotest-flag="--dwarf-version=4"
170
170
171
171
# Give the system some time to recover.
@@ -197,7 +197,7 @@ pipeline {
197
197
--dotest-flag="llgs" \
198
198
--dotest-flag="--skip-category" \
199
199
--dotest-flag="debugserver" \
200
- --dotest-flag="--arch=x86_64 " \
200
+ --dotest-flag="--arch=arm64 " \
201
201
--dotest-flag="--dwarf-version=5"
202
202
203
203
# Give the system some time to recover.
@@ -266,7 +266,7 @@ pipeline {
266
266
--dotest-flag="llgs" \
267
267
--dotest-flag="--skip-category" \
268
268
--dotest-flag="debugserver" \
269
- --dotest-flag="--arch=x86_64 "
269
+ --dotest-flag="--arch=arm64 "
270
270
271
271
# Give the system some time to recover.
272
272
sleep 120
@@ -336,7 +336,7 @@ pipeline {
336
336
--dotest-flag="llgs" \
337
337
--dotest-flag="--skip-category" \
338
338
--dotest-flag="debugserver" \
339
- --dotest-flag="--arch=x86_64 "
339
+ --dotest-flag="--arch=arm64 "
340
340
341
341
# Give the system some time to recover.
342
342
sleep 120
0 commit comments