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

Commit 556c6eb

Browse files
committed
Fix binary path on CI
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 32b1bf2 commit 556c6eb

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ pipeline {
112112
label 'ubuntu-1604-aufs-edge'
113113
}
114114
environment {
115-
DOCKERAPP_BINARY = './bin/docker-app-linux'
115+
DOCKERAPP_BINARY = '../docker-app-linux'
116116
}
117117
steps {
118118
dir('src/github.com/docker/app') {

Jenkinsfile.baguette

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ pipeline {
8585
label 'linux'
8686
}
8787
environment {
88-
DOCKERAPP_BINARY = './bin/docker-app-linux'
88+
DOCKERAPP_BINARY = '../docker-app-linux'
8989
}
9090
steps {
9191
dir('src/github.com/docker/app') {
@@ -110,7 +110,7 @@ pipeline {
110110
label "mac"
111111
}
112112
environment {
113-
DOCKERAPP_BINARY = './bin/docker-app-darwin'
113+
DOCKERAPP_BINARY = '../docker-app-darwin'
114114
}
115115
steps {
116116
dir('src/github.com/docker/app') {
@@ -135,7 +135,7 @@ pipeline {
135135
label "windows"
136136
}
137137
environment {
138-
DOCKERAPP_BINARY = './bin/docker-app-windows.exe'
138+
DOCKERAPP_BINARY = '../docker-app-windows.exe'
139139
}
140140
steps {
141141
dir('src/github.com/docker/app') {

0 commit comments

Comments
 (0)