You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 19, 2021. It is now read-only.
string(name: 'TARGET_URL', defaultValue: 'http://www.dashboard.acc.ictu', description: 'The base URL of the BigBoat instance under test')
string(name: 'TEST_USER_PASS', description: 'The password for the test user')
}
stages {
stage('NPM install') {
steps {
ansiColor('xterm') {
sh 'docker run --rm -v \$(pwd):/work -w /work -u \$(id -u):\$(id -g) greyarch/nocker npm i --only=dev'
}
}
}
stage('Run ART') {
steps {
ansiColor('xterm') {
sh "docker run --rm -t -v \$(pwd):/work -w /work --net=host -v /var/run/docker.sock:/var/run/docker.sock -e TEST_USER_PASS=${TEST_USER_PASS} greyarch/nocker npm run art -- --baseUrl=${TARGET_URL}"