From 449831f7359b94dd9a6ff6b6470a7a9fed0b34f1 Mon Sep 17 00:00:00 2001 From: Sergey Sokolov Date: Tue, 6 Mar 2018 17:41:06 +0300 Subject: [PATCH] Replace git-checkout with volume mounting from Travis sandbox --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f69bbb852..7a1427e3f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,6 @@ services: - docker before_install: - docker pull anlun/compiler-workout-ci - - docker run -d -it --name compiler-workout-ci -e "TRAVIS_COMMIT=$TRAVIS_COMMIT" -e "TRAVIS_REPO_SLUG=$TRAVIS_REPO_SLUG" anlun/compiler-workout-ci + - docker run -d -it --name compiler-workout-ci -v $(pwd):/usr/share/compiler-workout anlun/compiler-workout-ci script: docker exec -it compiler-workout-ci sh test.sh