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.
1 parent 7afe6a8 commit cf57116Copy full SHA for cf57116
.travis.yml
@@ -64,10 +64,9 @@ script:
64
- mkdir -p target/"$TARGET";
65
- >
66
case "$TARGET" in
67
- *-linux-android) DOCKER=android ;; # Android uses a local docker image
68
- *-linux-androideabi) DOCKER=android ;;
69
- *-apple-darwin) ;;
70
- *) DOCKER=$TARGET ;;
+ *-linux-android*) DOCKER=android ;; # Android uses a local docker image
+ *-apple-darwin) ;;
+ *) DOCKER="$TARGET";;
71
esac;
72
if [ -n "$DOCKER" ]; then
73
sh ci/build-run-docker.sh "$DOCKER" "$TARGET" "$SKIP_TESTS";
0 commit comments