Skip to content

Commit

Permalink
Fix Jenkinsfile to use relative paths for test execution and build co…
Browse files Browse the repository at this point in the history
…mmands
  • Loading branch information
ptankov committed Jan 8, 2025
1 parent 9627c94 commit ead2404
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ void runTest(Integer TEST_ID) {
export DEBUG_TESTS=1
fi
export KUBECONFIG=/tmp/$CLUSTER_NAME-$clusterSuffix
time bash e2e-tests/$testName/run
time ./e2e-tests/$testName/run
"""
}
pushArtifactFile("${env.GIT_BRANCH}-${env.GIT_SHORT_COMMIT}-$testName")
Expand Down Expand Up @@ -414,7 +414,7 @@ pipeline {
docker login -u '${USER}' -p '${PASS}'
export RELEASE=0
export IMAGE=\$DOCKER_TAG
e2e-tests/build
./e2e-tests/build
docker logout
"
sudo rm -rf ./build
Expand Down

0 comments on commit ead2404

Please sign in to comment.