Skip to content

Commit

Permalink
Update .travis.yml with new exec cmd for docker
Browse files Browse the repository at this point in the history
will now run `/bin/bash -c 'cd /code; /code/tests/run_tests.sh'`

Former-commit-id: 43bb335
  • Loading branch information
telegraphic authored Oct 4, 2019
1 parent 697ad55 commit 48b6f10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ before_script:
script:
- pwd
- ls
- docker run -e TRAVIS_JOB_ID="$TRAVIS_JOB_ID" -e TRAVIS_BRANCH="$TRAVIS_BRANCH" -e DIST=${DIST} -e CODECOV_TOKEN=${CODECOV_TOKEN} -it ${DIST}:latest "cd /code; /code/tests/run_tests.sh"
- docker run -e TRAVIS_JOB_ID="$TRAVIS_JOB_ID" -e TRAVIS_BRANCH="$TRAVIS_BRANCH" -e DIST=${DIST} -e CODECOV_TOKEN=${CODECOV_TOKEN} -it ${DIST}:latest /bin/bash -c 'cd /code; /code/tests/run_tests.sh'

after_success:
- docker login -u $DOCKER_USER -p $DOCKER_PASS
Expand Down

0 comments on commit 48b6f10

Please sign in to comment.