mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 14:17:22 +00:00
added swift support
This commit is contained in:
@@ -23,6 +23,8 @@ apt-fast install -y --no-install-recommends \
|
|||||||
libc++abi-dev \
|
libc++abi-dev \
|
||||||
libcurl3 \
|
libcurl3 \
|
||||||
libicu55 \
|
libicu55 \
|
||||||
|
libpython2.7 \
|
||||||
|
libpython2.7-dev \
|
||||||
libunwind8 \
|
libunwind8 \
|
||||||
locales \
|
locales \
|
||||||
netcat \
|
netcat \
|
||||||
|
|||||||
24
images/linux/scripts/installers/swift.sh
Normal file
24
images/linux/scripts/installers/swift.sh
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
################################################################################
|
||||||
|
## File: swift.sh
|
||||||
|
## Desc: Installs Swift
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Install # Install
|
||||||
|
image_label="$(lsb_release -rs)"
|
||||||
|
wget https://swift.org/builds/swift-5.1.5-release/ubuntu${image_label//./}/swift-5.1.5-RELEASE/swift-5.1.5-RELEASE-ubuntu$image_label.tar.gz
|
||||||
|
tar xzf swift-5.1.5-RELEASE-ubuntu$image_label.tar.gz
|
||||||
|
sudo mv swift-5.1.5-RELEASE-ubuntu$image_label /usr/share/swift
|
||||||
|
sudo echo "PATH=/usr/share/swift/usr/bin:$PATH" | sudo tee -a /etc/environment
|
||||||
|
source ~/.bashrc
|
||||||
|
|
||||||
|
# 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
|
||||||
|
|
||||||
|
# Document what was added to the image
|
||||||
|
echo "Lastly, documenting what we added to the metadata file"
|
||||||
|
DocumentInstalledItem "$(swift --version)"
|
||||||
@@ -144,6 +144,7 @@
|
|||||||
"{{template_dir}}/scripts/installers/aws.sh",
|
"{{template_dir}}/scripts/installers/aws.sh",
|
||||||
"{{template_dir}}/scripts/installers/build-essential.sh",
|
"{{template_dir}}/scripts/installers/build-essential.sh",
|
||||||
"{{template_dir}}/scripts/installers/clang.sh",
|
"{{template_dir}}/scripts/installers/clang.sh",
|
||||||
|
"{{template_dir}}/scripts/installers/swift.sh",
|
||||||
"{{template_dir}}/scripts/installers/cmake.sh",
|
"{{template_dir}}/scripts/installers/cmake.sh",
|
||||||
"{{template_dir}}/scripts/installers/docker-compose.sh",
|
"{{template_dir}}/scripts/installers/docker-compose.sh",
|
||||||
"{{template_dir}}/scripts/installers/docker-moby.sh",
|
"{{template_dir}}/scripts/installers/docker-moby.sh",
|
||||||
|
|||||||
@@ -147,6 +147,7 @@
|
|||||||
"{{template_dir}}/scripts/installers/aws.sh",
|
"{{template_dir}}/scripts/installers/aws.sh",
|
||||||
"{{template_dir}}/scripts/installers/build-essential.sh",
|
"{{template_dir}}/scripts/installers/build-essential.sh",
|
||||||
"{{template_dir}}/scripts/installers/clang.sh",
|
"{{template_dir}}/scripts/installers/clang.sh",
|
||||||
|
"{{template_dir}}/scripts/installers/swift.sh",
|
||||||
"{{template_dir}}/scripts/installers/cmake.sh",
|
"{{template_dir}}/scripts/installers/cmake.sh",
|
||||||
"{{template_dir}}/scripts/installers/docker-compose.sh",
|
"{{template_dir}}/scripts/installers/docker-compose.sh",
|
||||||
"{{template_dir}}/scripts/installers/docker-moby.sh",
|
"{{template_dir}}/scripts/installers/docker-moby.sh",
|
||||||
|
|||||||
Reference in New Issue
Block a user