diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 79314355e02b348b5eff1dc50dcf416d40655048..8e53db85b2bd85578843ca3e3b47eb59afdeb927 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,9 +1,3 @@ -# This file is a template, and might need editing before it works on your project. -# use the official gcc image, based on debian -# can use verions as well, like gcc:5.2 -# see https://hub.docker.com/_/gcc/ -image: gcc - build: stage: build script: @@ -13,4 +7,4 @@ build: test: stage: test script: - - ./test-ci.sh + - bash test-ci.sh diff --git a/test-ci.sh b/test-ci.sh index 24c14c1345b77b19c658363a06f2c8e2e2278c29..8278c93522978d69a943fbc608444196fe58b5ec 100644 --- a/test-ci.sh +++ b/test-ci.sh @@ -4,4 +4,4 @@ PROJECT_ROOT=$(pwd) export PROJECT_ROOT # Quad -quad/test-ci.sh || exit 1 +bash quad/test-ci.sh || exit 1