Skip to content

Commit 378af7e

Browse files
committed
Fix Linux build, add Docker dir for CI
1 parent 4a9cc26 commit 378af7e

14 files changed

+130
-19
lines changed

.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ DerivedData/
77
.netrc
88
.swiftpm
99
tmp
10-
Artifacts
11-
Bundles
10+
/Artifacts
11+
/Bundles
1212
.vscode

Docker/Dockerfile

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
ARG swift_version=5.7
2+
ARG ubuntu_version=jammy
3+
ARG base_image=swift:$swift_version-$ubuntu_version
4+
FROM $base_image
5+
# needed to do again after FROM due to docker limitation
6+
ARG swift_version
7+
ARG ubuntu_version
8+
9+
# set as UTF-8
10+
RUN apt-get update && apt-get install -y locales locales-all
11+
ENV LC_ALL en_US.UTF-8
12+
ENV LANG en_US.UTF-8
13+
ENV LANGUAGE en_US.UTF-8
14+
15+
# tools
16+
RUN mkdir -p $HOME/.tools
17+
RUN echo 'export PATH="$HOME/.tools:$PATH"' >> $HOME/.profile

Docker/docker-compose.2204.59.yaml

+19
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-sdk-generator:22.04-5.9
7+
build:
8+
args:
9+
base_image: "swiftlang/swift:nightly-5.9-jammy"
10+
11+
test:
12+
image: swift-sdk-generator:22.04-5.9
13+
environment:
14+
# - WARN_AS_ERROR_ARG=-Xswiftc -warnings-as-errors # need to fix S-CL-F sendability first
15+
- IMPORT_CHECK_ARG=--explicit-target-dependency-import-check error
16+
# - SANITIZER_ARG=--sanitize=thread # TSan broken still
17+
18+
shell:
19+
image: swift-sdk-generator:22.04-5.9

Docker/docker-compose.2204.main.yaml

+19
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-sdk-generator:22.04-main
7+
build:
8+
args:
9+
base_image: "swiftlang/swift:nightly-main-jammy"
10+
11+
test:
12+
image: swift-sdk-generator:22.04-main
13+
environment:
14+
# - WARN_AS_ERROR_ARG=-Xswiftc -warnings-as-errors # need to fix S-CL-F sendability first
15+
- IMPORT_CHECK_ARG=--explicit-target-dependency-import-check error
16+
# - SANITIZER_ARG=--sanitize=thread # TSan broken still
17+
18+
shell:
19+
image: swift-sdk-generator:22.04-main

Docker/docker-compose.yaml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# this file is not designed to be run directly
2+
# instead, use the docker-compose.<os>.<swift> files
3+
# eg docker-compose -f docker/docker-compose.yaml -f docker/docker-compose.2204.59.yaml run test
4+
version: "3"
5+
6+
services:
7+
8+
runtime-setup:
9+
image: swift-sdk-generator:default
10+
build:
11+
context: .
12+
dockerfile: Dockerfile
13+
14+
common: &common
15+
image: swift-sdk-generator:default
16+
depends_on: [runtime-setup]
17+
volumes:
18+
- ~/.ssh:/root/.ssh
19+
- ..:/code:z
20+
working_dir: /code
21+
22+
soundness:
23+
<<: *common
24+
command: /bin/bash -xcl "swift -version && uname -a && ./Utilities/soundness.sh"
25+
26+
test:
27+
<<: *common
28+
command: /bin/bash -xcl "./Utilities/test.sh $${WARN_AS_ERROR_ARG-} $${SANITIZER_ARG-} $${IMPORT_CHECK_ARG-}"
29+
30+
# util
31+
32+
shell:
33+
<<: *common
34+
entrypoint: /bin/bash

Package.swift

+2-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ let package = Package(
3636
.product(name: "AsyncAlgorithms", package: "swift-async-algorithms"),
3737
.product(name: "AsyncHTTPClient", package: "async-http-client"),
3838
.product(name: "SystemPackage", package: "swift-system"),
39-
]
39+
],
40+
exclude: ["Dockerfiles"]
4041
),
4142
.testTarget(
4243
name: "SwiftSDKGeneratorTests",

Sources/SwiftSDKGenerator/DestinationsGenerator+Entrypoint.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ extension SwiftSDKGenerator {
149149
logGenerationStep("Building a Docker image with the run-time triple environment...")
150150
try await buildDockerImage(
151151
name: imageName,
152-
dockerfileDirectory: pathsConfiguration.sourceRoot
152+
dockerfileDirectory: FilePath(#file)
153153
.appending("Dockerfiles")
154154
.appending("Ubuntu")
155155
.appending(versionsConfiguration.ubuntuVersion)

Sources/SwiftSDKGenerator/LocalSwiftSDKGenerator.swift

+2
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,8 @@ public final class LocalSwiftSDKGenerator: SwiftSDKGenerator {
102102
throw GeneratorError.unknownMacOSVersion(macOSVersion)
103103
}
104104
return Triple(cpu: cpu, vendor: .apple, os: .macosx(version: "\(majorMacOSVersion).0"))
105+
#elseif os(Linux)
106+
return Triple(cpu: cpu, vendor: .unknown, os: .linux)
105107
#else
106108
fatalError("Triple detection not implemented for the platform that this generator was built on.")
107109
#endif

Sources/SwiftSDKGenerator/SystemUtils/Triple.swift

+12-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,17 @@ public struct Triple: CustomStringConvertible {
1616
case x86_64
1717
case arm64
1818

19+
public init?(rawValue: String) {
20+
switch rawValue {
21+
case "x86_64":
22+
self = .x86_64
23+
case "aarch64", "arm64":
24+
self = .arm64
25+
default:
26+
return nil
27+
}
28+
}
29+
1930
/// Returns the value of `cpu` converted to a convention used by Swift on Linux, i.e. `arm64` becomes `aarch64`.
2031
var linuxConventionName: String {
2132
switch self {
@@ -30,7 +41,7 @@ public struct Triple: CustomStringConvertible {
3041
case unknown
3142
}
3243

33-
enum OS: CustomStringConvertible {
44+
enum OS: Hashable, CustomStringConvertible {
3445
case linux
3546
case darwin(version: String)
3647
case macosx(version: String)

Tests/EndToEndTests.swift

+1-2
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,8 @@ final class EndToEndTests: XCTestCase {
4343
XCTAssertTrue(installOutput.contains("successfully installed"))
4444

4545
let testPackageURL = FileManager.default.temporaryDirectory.appending(path: "swift-sdk-generator-test").path
46-
print(testPackageURL)
4746
let testPackageDir = FilePath(testPackageURL)
48-
try fm.removeItem(atPath: testPackageDir.string)
47+
try? fm.removeItem(atPath: testPackageDir.string)
4948
try fm.createDirectory(atPath: testPackageDir.string, withIntermediateDirectories: true)
5049

5150
try await Shell.run("swift package init --type executable", currentDirectory: testPackageDir)

Utilities/ci.sh

-11
This file was deleted.

Utilities/soundness.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ for language in swift-or-c bash python; do
6565
matching_files=( -name '*' )
6666
case "$language" in
6767
swift-or-c)
68-
exceptions=( -name "Package.swift" -o -path "./Examples/*" -o -path "./Fixtures/*" -o -path "./IntegrationTests/*" -o -path "./Tests/ExtraTests/*" -o -path "./Tests/PackageLoadingTests/Inputs/*" )
68+
exceptions=( -name "Package.swift" -o -path "./Examples/*" -o -path "./Fixtures/*" -o -path "./IntegrationTests/*" -o -path "./Tests/*" )
6969
matching_files=( -name '*.swift' -o -name '*.c' -o -name '*.h' )
7070
cat > "$tmp" <<"EOF"
7171
//===----------------------------------------------------------------------===//

Utilities/test.sh

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#!/bin/bash
2+
##===----------------------------------------------------------------------===##
3+
##
4+
## This source file is part of the Swift open source project
5+
##
6+
## Copyright (c) YEARS Apple Inc. and the Swift project authors
7+
## Licensed under Apache License v2.0 with Runtime Library Exception
8+
##
9+
## See http://swift.org/LICENSE.txt for license information
10+
## See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
11+
##
12+
##===----------------------------------------------------------------------===##
13+
14+
set -ex
15+
16+
if [ "$(uname)" = Darwin ]; then
17+
swift test $@
18+
else
19+
swift build $@
20+
fi

0 commit comments

Comments
 (0)