We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 697376e commit bb34272Copy full SHA for bb34272
Jenkinsfile-itest
@@ -1,7 +1,4 @@
1
node('docker') {
2
- // environment {
3
- // CI = 'true'
4
- // }
5
stage('Clone') {
6
cleanWs()
7
checkoutInfo = checkout(scm)
@@ -24,7 +21,7 @@ node('docker') {
24
21
docker.image('node:22-alpine')
25
22
.inside('-v /var/run/docker.sock:/var/run/docker.sock --network=host --user=root') {
26
23
stage('Init') {
27
- sh 'apk add docker docker-compose git' // TODO: Use already built image for a faster job execution
+ sh 'apk add docker docker-compose' // TODO: Use already built image for a faster job execution
28
sh 'npm ci'
29
}
30
stage('Integration tests') {
0 commit comments