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
No related branches found
No related tags found
No related merge requests found
...@@ -154,13 +154,16 @@ x86_64-unknown-illumos \ ...@@ -154,13 +154,16 @@ x86_64-unknown-illumos \
x86_64-unknown-linux-gnux32 \ x86_64-unknown-linux-gnux32 \
" "
RUST_OSX_TARGETS="\ RUST_APPLE_TARGETS="\
aarch64-apple-darwin \
aarch64-apple-ios \ aarch64-apple-ios \
x86_64-apple-darwin \ x86_64-apple-darwin \
x86_64-apple-ios \ x86_64-apple-ios \
" "
RUST_NIGHTLY_APPLE_TARGETS="\
aarch64-apple-darwin \
"
# The targets are listed here alphabetically # The targets are listed here alphabetically
TARGETS="" TARGETS=""
case "${OS}" in case "${OS}" in
...@@ -183,7 +186,12 @@ case "${OS}" in ...@@ -183,7 +186,12 @@ case "${OS}" in
;; ;;
macos*) 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