We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b34e7bd commit 3fb5deeCopy full SHA for 3fb5dee
1 file changed
Jenkinsfile
@@ -9,7 +9,7 @@ pipeline {
9
parallel {
10
stage('Build MacOS') {
11
agent {
12
- label 'xcode'
+ label 'mac'
13
}
14
when {
15
anyOf {
@@ -23,7 +23,7 @@ pipeline {
23
24
25
26
- stage('Build Linux') {
+ stage('Build Linux (Docker)') {
27
agent any
28
29
@@ -32,9 +32,7 @@ pipeline {
32
33
steps {
34
script {
35
- mgw.inDocker('liveui/boost-base:1.1.1') {
36
- sh 'swift test'
37
- }
+ sh './scripts/docker-shortcuts/test.sh'
38
39
40
0 commit comments