This repository was archived by the owner on Jul 18, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ properties([buildDiscarder(logRotator(numToKeepStr: '20'))])
2
2
3
3
pipeline {
4
4
agent {
5
- label ' gcp- linux-worker-0 '
5
+ label ' linux'
6
6
}
7
7
8
8
options {
@@ -12,7 +12,7 @@ pipeline {
12
12
stages {
13
13
stage(' Build' ) {
14
14
agent {
15
- label ' gcp- linux-worker-0 '
15
+ label ' linux'
16
16
}
17
17
steps {
18
18
dir(' src/github.com/docker/lunchbox' ) {
@@ -44,39 +44,36 @@ pipeline {
44
44
parallel {
45
45
stage(" Test Linux" ) {
46
46
agent {
47
- label ' gcp- linux-worker-0 '
47
+ label ' linux'
48
48
}
49
49
steps {
50
50
dir(' src/github.com/docker/lunchbox' ) {
51
51
deleteDir()
52
52
unstash ' e2e'
53
- sh ' ls -la'
54
53
sh ' ./docker-app-e2e-linux'
55
54
}
56
55
}
57
56
}
58
57
stage(" Test Mac" ) {
59
58
agent {
60
- label " macstadium13 "
59
+ label " mac "
61
60
}
62
61
steps {
63
62
dir(' src/github.com/docker/lunchbox' ) {
64
63
deleteDir()
65
64
unstash ' e2e'
66
- sh ' ls -la'
67
65
sh ' ./docker-app-e2e-darwin'
68
66
}
69
67
}
70
68
}
71
69
stage(" Test Win" ) {
72
70
agent {
73
- label " gcp- windows-worker-2 "
71
+ label " windows"
74
72
}
75
73
steps {
76
74
dir(' src/github.com/docker/lunchbox' ) {
77
75
deleteDir()
78
76
unstash " e2e"
79
- bat ' dir'
80
77
bat ' docker-app-e2e-windows.exe'
81
78
}
82
79
}
You can’t perform that action at this time.
0 commit comments