summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Parker-Shemilt <palfrey@tevp.net>2018-11-24 19:27:22 +0000
committerTom Parker-Shemilt <palfrey@tevp.net>2018-11-24 19:27:22 +0000
commit9a04c39566ff085278119c410fe85ddfa8442736 (patch)
tree37be90eb829e8443793df5b40053b0c1e58db631
parentb05e05819da2e2cc3dc15deb6c784bdee3328f3f (diff)
downloadrust-libc-9a04c39566ff085278119c410fe85ddfa8442736.tar.gz
Remove non-POSIX loop construct
-rwxr-xr-xci/run-docker.sh9
1 files changed, 4 insertions, 5 deletions
diff --git a/ci/run-docker.sh b/ci/run-docker.sh
index 1e65795ebf..b1bd77fa60 100755
--- a/ci/run-docker.sh
+++ b/ci/run-docker.sh
@@ -9,11 +9,10 @@ run() {
echo "Building docker container for target ${1}"
# FIXME: Hacky workaround. Docker build seems to work better if we pull the base images first
- ubuntu_images=( 16.04 17.10 18.04 )
- for i in "${ubuntu_images[@]}"
- do
- docker pull ubuntu:$i
- done
+ # Not using arrays/loops because it's not POSIX sh compatible
+ docker pull ubuntu:16.04
+ docker pull ubuntu:17.10
+ docker pull ubuntu:18.04
# use -f so we can use ci/ as build context
docker build -t libc -f "ci/docker/${1}/Dockerfile" ci/