Skip to content

Commit fb395e9

Browse files
committed
CI
1 parent 48bd1b6 commit fb395e9

1 file changed

Lines changed: 2 additions & 19 deletions

File tree

Jenkinsfile

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,6 @@ pipeline {
77
stages {
88
stage('Builds') {
99
parallel {
10-
stage('Build MacOS') {
11-
agent {
12-
label 'xcode'
13-
}
14-
when {
15-
anyOf {
16-
branch 'master'
17-
}
18-
}
19-
steps {
20-
script {
21-
sh 'swift test'
22-
}
23-
}
24-
}
25-
2610
stage('Build Linux') {
2711
agent any
2812
when {
@@ -32,13 +16,12 @@ pipeline {
3216
}
3317
steps {
3418
script {
35-
mgw.inDocker('liveui/boost-base:1.1.1') {
36-
sh 'swift test'
37-
}
19+
sh './scripts/docker-shortcuts/test.sh'
3820
}
3921
}
4022
}
4123
}
4224
}
4325
}
4426
}
27+

0 commit comments

Comments
 (0)