Skip to content
Snippets Groups Projects
Commit 2dc2a391 authored by Vickenty Fesunov's avatar Vickenty Fesunov
Browse files

Cross-compile to tier3 apple targets

parent 828e9b54
No related branches found
No related tags found
No related merge requests found
......@@ -279,3 +279,17 @@ if [ "${RUST}" = "nightly" ] && [ "${OS}" = "linux" ]; then
cargo xbuild --target switch.json
fi
RUST_OSX_NO_CORE_TARGETS="\
armv7-apple-ios \
armv7s-apple-ios \
i386-apple-ios \
i686-apple-darwin \
"
if [ "${RUST}" = "nightly" ] && [ "${OS}" = "osx" ]; then
for TARGET in $RUST_OSX_NO_CORE_TARGETS; do
if echo "$TARGET" | grep -q "$FILTER"; then
test_target xbuild "$TARGET" 1
fi
done
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