Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit df53244

Browse files
authored
Merge pull request #374 from vdemeester/e2e-too-e
e2e refactoring / cleaning
2 parents b84d35f + d502caa commit df53244

38 files changed

Lines changed: 368 additions & 349 deletions

Gopkg.lock

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Jenkinsfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,9 @@ pipeline {
111111
agent {
112112
label 'ubuntu-1604-aufs-edge'
113113
}
114+
environment {
115+
DOCKERAPP_BINARY = '../docker-app-linux'
116+
}
114117
steps {
115118
dir('src/github.com/docker/app') {
116119
unstash "binaries"

Jenkinsfile.baguette

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,9 @@ pipeline {
8484
agent {
8585
label 'linux'
8686
}
87+
environment {
88+
DOCKERAPP_BINARY = '../docker-app-linux'
89+
}
8790
steps {
8891
dir('src/github.com/docker/app') {
8992
unstash "binaries"
@@ -106,6 +109,9 @@ pipeline {
106109
agent {
107110
label "mac"
108111
}
112+
environment {
113+
DOCKERAPP_BINARY = '../docker-app-darwin'
114+
}
109115
steps {
110116
dir('src/github.com/docker/app') {
111117
unstash "binaries"
@@ -128,6 +134,9 @@ pipeline {
128134
agent {
129135
label "windows"
130136
}
137+
environment {
138+
DOCKERAPP_BINARY = '../docker-app-windows.exe'
139+
}
131140
steps {
132141
dir('src/github.com/docker/app') {
133142
unstash "binaries"

0 commit comments

Comments
 (0)