We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
aarch64-apple-darwin
1 parent ee94cf8 commit 5583b5bCopy full SHA for 5583b5b
ci/build.sh
@@ -154,13 +154,16 @@ x86_64-unknown-illumos \
154
x86_64-unknown-linux-gnux32 \
155
"
156
157
-RUST_OSX_TARGETS="\
158
-aarch64-apple-darwin \
+RUST_APPLE_TARGETS="\
159
aarch64-apple-ios \
160
x86_64-apple-darwin \
161
x86_64-apple-ios \
162
163
+RUST_NIGHTLY_APPLE_TARGETS="\
164
+aarch64-apple-darwin \
165
+"
166
+
167
# The targets are listed here alphabetically
168
TARGETS=""
169
case "${OS}" in
@@ -183,7 +186,12 @@ case "${OS}" in
183
186
184
187
;;
185
188
macos*)
- TARGETS="${RUST_OSX_TARGETS}"
189
+ TARGETS="${RUST_APPLE_TARGETS}"
190
191
+ if [ "${RUST}" = "nightly" ]; then
192
+ TARGETS="${TARGETS} ${RUST_NIGHTLY_APPLE_TARGETS}"
193
+ fi
194
195
196
*)
197
0 commit comments