From: Daniel Baston Date: Fri, 28 Sep 2018 14:33:13 +0000 (+0000) Subject: Don't rely on +x for Travis run_tests.sh X-Git-Tag: 3.0.0alpha1~381 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=98c318a6788fbe130f53af5563d19a5f47b2bccd;p=postgis Don't rely on +x for Travis run_tests.sh git-svn-id: http://svn.osgeo.org/postgis/trunk@16849 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/.travis.yml b/.travis.yml index 80421da4a..4a23f44a3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,7 +19,7 @@ matrix: script: - echo "FROM postgis/postgis-build-env:${tag}" > Dockerfile - echo "ADD --chown=postgres:postgres . /src/postgis" >> Dockerfile - - echo "CMD ci/travis/run_tests.sh && bash .github/codecov.bash" >> Dockerfile + - echo "CMD bash ci/travis/run_tests.sh && bash .github/codecov.bash" >> Dockerfile - docker build -t pgtest . - ci_env=`bash .github/codecov_env.bash` - docker run $ci_env --name pgtest-${TRAVIS_BUILD_NUMBER} pgtest