-
Notifications
You must be signed in to change notification settings - Fork 655
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
A re-usable static SDK compilation workflow
Motivation: We would like to offer the ability to opt-in to CI coverage for compilation against the Linux static SDK. Modifications: Introduce a workflow which will install a Swift snapshot and Linux SDK and test the repository builds against it. The script which sets up the VM will install snapshots and SDKs for either branch or released-version snapshots. They can be specified as: - a specific version string - the 'latest' version, the script attempts to find the most recent version enumerated on swift.org with both SDK and toolchain available - the most recent snapshot for the specified branch name enumerated on swift.org with both SDK and toolchain available At the moment the script should work on ubuntu and amazonlinux OSes, this can be expanded in the future. The current matrix covers testing building on Ubuntu Jammy for the main branch and latest released Swift version (6.0.2). Result: Increased CI coverage
- Loading branch information
Showing
5 changed files
with
175 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Static SDK | ||
|
||
on: | ||
workflow_call: | ||
|
||
jobs: | ||
static-sdk: | ||
name: Static SDK | ||
# Workaround https://github.com/nektos/act/issues/1875 | ||
uses: apple/swift-nio/.github/workflows/swift_test_matrix.yml@static_sdk_workflow # TODO: change to @main | ||
with: | ||
name: "Static SDK" | ||
matrix_string: >- | ||
{ | ||
"swift":[ | ||
{ | ||
"name":"latest-release Jammy", | ||
"swift_version":"6.0.2", | ||
"platform":"Linux", | ||
"runner":"ubuntu-latest", | ||
"image":"ubuntu:jammy", | ||
"setup_command":"INSTALL_SWIFT_STATIC_SDK_VERSION=latest INSTALL_SWIFT_STATIC_SDK_ARCH=x86_64 ./scripts/install_static_sdk.sh", | ||
"command":"swift build", | ||
"command_arguments":"--swift-sdk x86_64-swift-linux-musl" | ||
}, | ||
{ | ||
"name":"main Jammy", | ||
"swift_version":"main", | ||
"platform":"Linux", | ||
"runner":"ubuntu-latest", | ||
"image":"ubuntu:jammy", | ||
"setup_command":"INSTALL_SWIFT_STATIC_SDK_BRANCH=main INSTALL_SWIFT_STATIC_SDK_ARCH=x86_64 ./scripts/install_static_sdk.sh", | ||
"command":"swift build", | ||
"command_arguments":"--swift-sdk x86_64-swift-linux-musl" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
#!/bin/bash | ||
##===----------------------------------------------------------------------===## | ||
## | ||
## This source file is part of the SwiftNIO open source project | ||
## | ||
## Copyright (c) 2024 Apple Inc. and the SwiftNIO project authors | ||
## Licensed under Apache License v2.0 | ||
## | ||
## See LICENSE.txt for license information | ||
## See CONTRIBUTORS.txt for the list of SwiftNIO project authors | ||
## | ||
## SPDX-License-Identifier: Apache-2.0 | ||
## | ||
##===----------------------------------------------------------------------===## | ||
|
||
set -uo pipefail | ||
|
||
log() { printf -- "** %s\n" "$*" >&2; } | ||
error() { printf -- "** ERROR: %s\n" "$*" >&2; } | ||
fatal() { error "$@"; exit 1; } | ||
|
||
# Parameter environment variables | ||
branch="${INSTALL_SWIFT_STATIC_SDK_BRANCH:=""}" | ||
version="${INSTALL_SWIFT_STATIC_SDK_VERSION:=""}" | ||
arch="${INSTALL_SWIFT_STATIC_SDK_ARCH:="aarch64"}" | ||
os_image="${INSTALL_SWIFT_STATIC_SDK_OS_IMAGE:="ubuntu22.04"}" | ||
|
||
if [[ ! ( -n "$branch" && -z "$version" ) && ! ( -z "$branch" && -n "$version") ]]; then | ||
fatal "Exactly one of build or version must be defined." | ||
fi | ||
|
||
log "Installing tools for this script" | ||
if command -v apt-get >/dev/null; then | ||
package_manager="apt-get" | ||
apt-get update > /dev/null | ||
elif command -v yum >/dev/null; then | ||
package_manager="yum" | ||
else | ||
fatal "Cannot find either 'apt' or 'yum'" | ||
fi | ||
|
||
"$package_manager" install -y curl rsync jq tar > /dev/null | ||
case "$arch" in | ||
"aarch64") | ||
arch_suffix="-$arch" ;; | ||
"x86_64") | ||
arch_suffix="" ;; | ||
*) | ||
fatal "Unexpected architecture: $arch" ;; | ||
esac | ||
|
||
os_image_sanitized="${os_image//./}" | ||
|
||
if [[ -n "$branch" ]]; then | ||
# Some snapshots may not have all the artefacts we require | ||
log "Discovering branch snapshot for branch $branch" | ||
snapshots="$(curl -s "https://www.swift.org/api/v1/install/dev/main/${os_image_sanitized}.json" | jq -r --arg arch "$arch" '.[$arch] | unique | reverse | .[].dir')" | ||
for snapshot in $snapshots; do | ||
snapshot_url="https://download.swift.org/development/${os_image_sanitized}${arch_suffix}/${snapshot}/${snapshot}-${os_image}${arch_suffix}.tar.gz" | ||
static_sdk_url="https://download.swift.org/development/static-sdk/${snapshot}/${snapshot}_static-linux-0.0.1.artifactbundle.tar.gz" | ||
|
||
# check that the files exist | ||
curl -sILXGET --fail "$snapshot_url" > /dev/null; snapshot_return_code=$? | ||
curl -sILXGET --fail "$static_sdk_url" > /dev/null; static_sdk_return_code=$? | ||
|
||
if [[ ("$snapshot_return_code" -eq 0) && ("$static_sdk_return_code" -eq 0) ]]; then | ||
log "Discovered branch snapshot: $snapshot" | ||
break | ||
else | ||
log "Snapshot unavailable: $snapshot (Snapshot return code: $snapshot_return_code, Static SDK return code: $static_sdk_return_code)" | ||
snapshot="" | ||
fi | ||
done | ||
if [[ -z "$snapshot" ]]; then | ||
fatal "Failed to discover usable Swift snapshot" | ||
fi | ||
|
||
elif [[ -n "$version" ]]; then | ||
if [[ "$version" == "latest" ]]; then | ||
log "Discovering latest version" | ||
version=$(curl -s https://www.swift.org/api/v1/install/releases.json | jq -r '.[-1].tag' | sed -E 's/swift-([0-9]+\.[0-9]+\.[0-9]+)-RELEASE/\1/') | ||
if [[ -z "$version" ]]; then | ||
fatal "Failed to discover latest Swift version" | ||
fi | ||
log "Discovered latest Swift version: $version" | ||
fi | ||
|
||
snapshot_url="https://download.swift.org/swift-${version}-release/${os_image_sanitized}${arch_suffix}/swift-${version}-RELEASE/swift-${version}-RELEASE-${os_image}${arch_suffix}.tar.gz" | ||
static_sdk_url="https://download.swift.org/swift-${version}-release/static-sdk/swift-${version}-RELEASE/swift-${version}-RELEASE_static-linux-0.0.1.artifactbundle.tar.gz" | ||
fi | ||
|
||
log "Installing standard Swift pre-requisites" # pre-reqs list taken from swift.org | ||
DEBIAN_FRONTEND=noninteractive "$package_manager" install -y\ | ||
binutils\ | ||
git\ | ||
gnupg2\ | ||
libc6-dev\ | ||
libcurl4-openssl-dev\ | ||
libedit2\ | ||
libgcc-11-dev\ | ||
libpython3-dev\ | ||
libsqlite3-0\ | ||
libstdc++-11-dev\ | ||
libxml2-dev\ | ||
libz3-dev\ | ||
pkg-config\ | ||
python3-lldb-13\ | ||
tzdata\ | ||
unzip\ | ||
zlib1g-dev\ | ||
> /dev/null | ||
|
||
log "Obtaining Swift toolchain" | ||
log "Snapshot URL: $snapshot_url" | ||
snapshot_path="/tmp/$(basename "$snapshot_url")" | ||
curl -sL "$snapshot_url" -o "$snapshot_path" | ||
|
||
log "Installing Swift toolchain" | ||
mkdir -p /tmp/snapshot | ||
tar xfz "$snapshot_path" --strip-components 1 -C /tmp/snapshot | ||
rsync -a /tmp/snapshot/* / | ||
|
||
log "Obtaining Static SDK" | ||
log "Static SDK URL: $static_sdk_url" | ||
static_sdk_path="/tmp/$(basename "$static_sdk_url")" | ||
curl -sL "$static_sdk_url" -o "$static_sdk_path" | ||
|
||
log "Installing Static SDK" | ||
swift sdk install "$static_sdk_path" |