Skip to content

Commit c699aca

Browse files
committed
Add CI for nightly trunk images of new linux platforms
1 parent b3bc95f commit c699aca

File tree

4 files changed

+36
-0
lines changed

4 files changed

+36
-0
lines changed

.gitlab/ci/amazonlinux-2.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
include: '/.gitlab/ci/test-template.yml'
2+
3+
swift trunk:
4+
extends: .unit-test
5+
image: swiftlang/swift:nightly-master-amazonlinux2
6+
allow_failure: true

.gitlab/ci/centos-8.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
include: '/.gitlab/ci/test-template.yml'
2+
3+
swift trunk:
4+
extends: .unit-test
5+
image: swiftlang/swift:nightly-master-centos8
6+
allow_failure: true

.gitlab/ci/main.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,3 +69,21 @@ Ubuntu Xenial:
6969
trigger:
7070
strategy: depend
7171
include: '/.gitlab/ci/ubuntu-xenial.yml'
72+
73+
Ubuntu Focal:
74+
stage: Platform Tests
75+
trigger:
76+
strategy: depend
77+
include: '/.gitlab/ci/ubuntu-focal.yml'
78+
79+
CentOS 8:
80+
stage: Platform Tests
81+
trigger:
82+
strategy: depend
83+
include: '/.gitlab/ci/centos-8.yml'
84+
85+
Amazon Linux 2:
86+
stage: Platform Tests
87+
trigger:
88+
strategy: depend
89+
include: '/.gitlab/ci/amazonlinux-2.yml'

.gitlab/ci/ubuntu-focal.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
include: '/.gitlab/ci/test-template.yml'
2+
3+
swift trunk:
4+
extends: .unit-test
5+
image: swiftlang/swift:nightly-master-focal
6+
allow_failure: true

0 commit comments

Comments
 (0)