mirror of
https://github.com/actions/runner-images.git
synced 2025-12-11 11:37:00 +00:00
* added a swiftc symlink * swiftc points to swiftc Co-authored-by: Leonid Lapshin <originalnoe-nazvanie@yandex.ru>
34 lines
1.2 KiB
Bash
34 lines
1.2 KiB
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: swift.sh
|
|
## Desc: Installs Swift
|
|
################################################################################
|
|
|
|
# Install
|
|
image_label="$(lsb_release -rs)"
|
|
swift_version=$(curl -s -L -N https://swift.org/download|awk -F"[ <]" '/id="swift-/ {print $4; exit}')
|
|
|
|
wget -P /tmp https://swift.org/builds/swift-$swift_version-release/ubuntu${image_label//./}/swift-$swift_version-RELEASE/swift-$swift_version-RELEASE-ubuntu$image_label.tar.gz
|
|
|
|
tar xzf /tmp/swift-$swift_version-RELEASE-ubuntu$image_label.tar.gz
|
|
mv swift-$swift_version-RELEASE-ubuntu$image_label /usr/share/swift
|
|
|
|
SWIFT_PATH="/usr/share/swift/usr/bin"
|
|
SWIFT_BIN="$SWIFT_PATH/swift"
|
|
SWIFTC_BIN="$SWIFT_PATH/swiftc"
|
|
ln -s "$SWIFT_BIN" /usr/local/bin/swift
|
|
ln -s "$SWIFTC_BIN" /usr/local/bin/swiftc
|
|
echo "SWIFT_PATH=$SWIFT_PATH" | tee -a /etc/environment
|
|
|
|
# Run tests to determine that the software installed as expected
|
|
echo "Testing to make sure that script performed as expected, and basic scenarios work"
|
|
if ! command -v swift; then
|
|
echo "Swift was not installed"
|
|
exit 1
|
|
fi
|
|
|
|
if ! command -v swiftc; then
|
|
echo "Swiftc is not linked to swift binary"
|
|
exit 1
|
|
fi
|