Skip to content

Commit

Permalink
ci: fix labels that clashes with the Orka workers (#659) (#664)
Browse files Browse the repository at this point in the history
(cherry picked from commit 42b1a96)

Co-authored-by: Victor Martinez <victormartinezrubio@gmail.com>
  • Loading branch information
mergify[bot] and v1v authored Jul 11, 2022
1 parent 603aa6e commit b51b9e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .ci/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ pipeline {
axes {
axis {
name 'PLATFORM'
values 'ubuntu-20.04 && immutable', 'aarch64', 'windows-2016 && windows-immutable', 'windows-2022 && windows-immutable', 'darwin && orka && x86_64'
values 'ubuntu-20.04 && immutable', 'aws && aarch64', 'windows-2016 && windows-immutable', 'windows-2022 && windows-immutable', 'darwin && orka && x86_64'
}
}
stages {
Expand Down Expand Up @@ -164,7 +164,7 @@ pipeline {
}
}
environment {
ARCH = "${PLATFORM.equals('aarch64') ? 'arm64' : 'amd64'}"
ARCH = "${PLATFORM.contains('aarch64') ? 'arm64' : 'amd64'}"
DEV = true
EXTERNAL = true
}
Expand Down

0 comments on commit b51b9e7

Please sign in to comment.