Skip to content
Snippets Groups Projects
Commit 5583b5b7 authored by Yuki Okushi's avatar Yuki Okushi
Browse files

Add `aarch64-apple-darwin` to nightly targets

parent ee94cf8f
Loading
......@@ -154,13 +154,16 @@ x86_64-unknown-illumos \
x86_64-unknown-linux-gnux32 \
"
RUST_OSX_TARGETS="\
aarch64-apple-darwin \
RUST_APPLE_TARGETS="\
aarch64-apple-ios \
x86_64-apple-darwin \
x86_64-apple-ios \
"
RUST_NIGHTLY_APPLE_TARGETS="\
aarch64-apple-darwin \
"
# The targets are listed here alphabetically
TARGETS=""
case "${OS}" in
......@@ -183,7 +186,12 @@ case "${OS}" in
;;
macos*)
TARGETS="${RUST_OSX_TARGETS}"
TARGETS="${RUST_APPLE_TARGETS}"
if [ "${RUST}" = "nightly" ]; then
TARGETS="${TARGETS} ${RUST_NIGHTLY_APPLE_TARGETS}"
fi
;;
*)
;;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment