mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-11 12:07:09 +00:00
32 lines
1.3 KiB
Bash
32 lines
1.3 KiB
Bash
#!/bin/bash
|
|
################################################################################
|
|
## File: example.sh
|
|
## Desc: This is an example script that can be copied to add a new software
|
|
## installer to the image
|
|
################################################################################
|
|
|
|
# Source the helpers for use with the script
|
|
source $HELPER_SCRIPTS/document.sh
|
|
source $HELPER_SCRIPTS/apt.sh
|
|
|
|
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add -
|
|
apt-add-repository "deb http://apt.llvm.org/$(lsb_release -cs)/ llvm-toolchain-$(lsb_release -cs)-6.0 main"
|
|
apt-get update
|
|
apt-get install -y clang-6.0 lldb-6.0 lld-6.0
|
|
|
|
update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-6.0 100
|
|
update-alternatives --install /usr/bin/clang clang /usr/bin/clang-6.0 100
|
|
|
|
# Run tests to determine that the software installed as expected
|
|
echo "Testing to make sure that script performed as expected, and basic scenarios work"
|
|
for cmd in clang clang++ clang-6.0 clang++-6.0; do
|
|
if ! command -v $cmd; then
|
|
echo "$cmd was not installed"
|
|
exit 1
|
|
fi
|
|
done
|
|
|
|
# Document what was added to the image
|
|
echo "Lastly, documenting what we added to the metadata file"
|
|
DocumentInstalledItem "Clang 6.0 ($(clang-6.0 --version | head -n 1))"
|