mirror of
https://github.com/actions/runner-images.git
synced 2025-12-11 11:37:00 +00:00
25 lines
1.1 KiB
Bash
25 lines
1.1 KiB
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: install-julia.sh
|
|
## Desc: Install Julia and add to the path
|
|
################################################################################
|
|
|
|
# Source the helpers for use with the script
|
|
source $HELPER_SCRIPTS/install.sh
|
|
|
|
# get the latest julia version
|
|
json=$(curl -fsSL "https://julialang-s3.julialang.org/bin/versions.json")
|
|
julia_version=$(echo $json | jq -r '.[].files[] | select(.triplet=="x86_64-linux-gnu" and (.version | contains("-") | not)).version' | sort -V | tail -n1)
|
|
|
|
# download julia archive
|
|
julia_tar_url=$(echo $json | jq -r ".[].files[].url | select(endswith(\"julia-${julia_version}-linux-x86_64.tar.gz\"))")
|
|
julia_archive_path=$(download_with_retry "$julia_tar_url")
|
|
|
|
# extract files and make symlink
|
|
julia_installation_path="/usr/local/julia${julia_version}"
|
|
mkdir -p "${julia_installation_path}"
|
|
tar -C "${julia_installation_path}" -xzf "$julia_archive_path" --strip-components=1
|
|
ln -s "${julia_installation_path}/bin/julia" /usr/bin/julia
|
|
|
|
invoke_tests "Tools" "Julia"
|