File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,8 @@ include: '/.gitlab/ci/platform-test.yml'
11
11
swift trunk :
12
12
extends : .centos7
13
13
image : swiftlang/swift:nightly-master-centos7
14
- allow_failure : true
14
+ variables :
15
+ RUN_NIGHTLY : 1
15
16
16
17
swift 5.5 :
17
18
extends : .centos7
Original file line number Diff line number Diff line change @@ -15,4 +15,10 @@ stages:
15
15
script :
16
16
- swift build --build-tests --enable-test-discovery --sanitize=thread -v
17
17
- swift test --skip-build
18
+ rules :
19
+ - if : ' $CI_PIPELINE_SOURCE == "schedule" && $RUN_NIGHTLY'
20
+ allow_failure : true
21
+ when : always
22
+ - if : ' $CI_PIPELINE_SOURCE != "schedule"'
23
+ when : always
18
24
Original file line number Diff line number Diff line change @@ -3,7 +3,8 @@ include: '/.gitlab/ci/platform-test.yml'
3
3
swift trunk :
4
4
extends : .platform-test
5
5
image : swiftlang/swift:nightly-master-${SWIFT_PLATFORM_NAME}
6
- allow_failure : true
6
+ variables :
7
+ RUN_NIGHTLY : 1
7
8
8
9
swift 5.5 :
9
10
extends : .platform-test
You can’t perform that action at this time.
0 commit comments