Files
runner-images/images/ubuntu/scripts/build/install-erlang.sh
T

30 lines
1.0 KiB
Bash
Raw Normal View History

2020-10-07 13:49:40 +05:00
#!/bin/bash -e
################################################################################
2023-11-22 21:49:23 +01:00
## File: install-erlang.sh
## Desc: Install erlang and rebar3
################################################################################
# Source the helpers for use with the script
source $HELPER_SCRIPTS/install.sh
source_list=/etc/apt/sources.list.d/eslerlang.list
2022-06-13 13:37:41 +02:00
source_key=/usr/share/keyrings/eslerlang.gpg
# Install Erlang
2022-06-13 13:37:41 +02:00
wget -q -O - https://packages.erlang-solutions.com/ubuntu/erlang_solutions.asc | gpg --dearmor > $source_key
echo "deb [signed-by=$source_key] https://packages.erlang-solutions.com/ubuntu $(lsb_release -cs) contrib" > $source_list
apt-get update
apt-get install --no-install-recommends esl-erlang
# Install rebar3
2023-12-29 12:36:27 +01:00
rebar3_url=$(resolve_github_release_asset_url "erlang/rebar3" "endswith(\"rebar3\")" "latest")
binary_path=$(download_with_retry "$rebar3_url")
install "$binary_path" /usr/local/bin/rebar3
# Clean up source list
rm $source_list
2022-06-13 13:37:41 +02:00
rm $source_key
invoke_tests "Tools" "erlang"