diff --git a/Jenkinsfile b/Jenkinsfile index 64efaf1..ec2fc65 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,6 +4,8 @@ pipeline { stages { stage ('Pre-Build') { steps { + cleanWs() + sh 'make go-tools' } } diff --git a/integration-tests/cypressRun.sh b/integration-tests/cypressRun.sh index 6c07b60..c5018d5 100755 --- a/integration-tests/cypressRun.sh +++ b/integration-tests/cypressRun.sh @@ -4,7 +4,7 @@ set -o xtrace echo "Running config $1" -cp -f ../configs/config.{$1}.yaml ./config/config.yaml +cp -f ../configs/config.$1.yaml ./config/config.yaml docker start olivetin NO_COLOR=1 ./node_modules/.bin/cypress run --headless -s cypress/integration/$1/* || true docker kill olivetin