Run scripts using bash to avoid file permission issues

This commit is contained in:
Rsl1122 2018-11-12 15:51:00 +02:00
parent ab3833df91
commit d805f5665a

View File

@ -14,12 +14,11 @@ jobs:
include: include:
- stage: "Tests" - stage: "Tests"
name: "Prepare build" name: "Prepare build"
script: ./scripts/prepareBuild.sh script: bash /scripts/prepareBuild.sh
- name: "Unit tests" script: bash /scripts/runTests.sh
script: ./scripts/runTests.sh
- stage: "System Tests" - stage: "System Tests"
name: "Test environment setup" name: "Test environment setup"
script: ./scripts/prepareServerJars.sh script: bash /scripts/prepareServerJars.sh
cache: cache:
directories: directories:
- '$HOME/.m2/repository' - '$HOME/.m2/repository'