Skip to content

Commit 0240ec7

Browse files
committed
Deduplicate Android docker image version number.
1 parent f176903 commit 0240ec7

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ services:
99
- docker
1010
before_script:
1111
- if [ "$TARGET" = "arm-linux-androideabi" ]; then
12-
travis_wait docker pull alexcrichton/rust-slave-android:2015-11-22;
12+
travis_wait docker pull $(cat android-docker-image);
1313
fi
1414

1515
script:

android-docker-image

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
alexcrichton/rust-slave-android:2015-11-22

ci/run-travis.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ exec sh ci/run.sh $TARGET
6161
-v $HOME/rust:/usr/local:ro \
6262
-v `pwd`:/checkout:ro \
6363
-e LD_LIBRARY_PATH=/usr/local/lib \
64-
-it alexcrichton/rust-slave-android:2015-11-22 \
64+
-it $(cat android-docker-image) \
6565
-c "$script"
6666
;;
6767

0 commit comments

Comments
 (0)