Skip to content

Commit 3664efa

Browse files
authored
Add CI pipeline for Swift 5.10 (#43)
Motivation: Now that Swift 5.9 is GM we should update the CI pipelines Modifications: * Add a 5.10 nightly docker compose file * Update the 5.9 compose file to stop using nightlies Result: Remove add CI support for 5.10
1 parent 28d0e07 commit 3664efa

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

docker/docker-compose.2204.510.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
version: "3"
2+
3+
services:
4+
5+
runtime-setup:
6+
image: swift-asn1:22.04-5.10
7+
build:
8+
args:
9+
base_image: "swiftlang/swift:nightly-5.10-jammy"
10+
11+
test:
12+
image: swift-asn1:22.04-5.10
13+
environment:
14+
- WARN_AS_ERROR_ARG=-Xswiftc -warnings-as-errors
15+
- IMPORT_CHECK_ARG=--explicit-target-dependency-import-check error
16+
# - SANITIZER_ARG=--sanitize=thread # TSan broken still
17+
18+
shell:
19+
image: swift-asn1:22.04-5.10

docker/docker-compose.2204.59.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ services:
66
image: swift-asn1:22.04-5.9
77
build:
88
args:
9-
base_image: "swiftlang/swift:nightly-5.9-jammy"
9+
ubuntu_version: "jammy"
10+
swift_version: "5.9"
1011

1112
test:
1213
image: swift-asn1:22.04-5.9

0 commit comments

Comments
 (0)