2019-11-17 19:30:42 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
set -eo pipefail
|
|
|
|
|
|
2019-12-04 13:54:33 -05:00
|
|
|
cd /tmp
|
|
|
|
|
|
2019-11-17 19:30:42 +01:00
|
|
|
wget -q -O otp.tar.gz https://repo.hex.pm/builds/otp/ubuntu-14.04/OTP-${1}.tar.gz
|
|
|
|
|
mkdir -p .setup-elixir/otp
|
|
|
|
|
tar zxf otp.tar.gz -C .setup-elixir/otp --strip-components=1
|
|
|
|
|
rm otp.tar.gz
|
|
|
|
|
.setup-elixir/otp/Install -minimal $(pwd)/.setup-elixir/otp
|
|
|
|
|
echo "::add-path::$(pwd)/.setup-elixir/otp/bin"
|