mirror of
https://github.com/actions/runner-images.git
synced 2025-12-14 13:17:54 +00:00
15 lines
520 B
Bash
15 lines
520 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: sbt.sh
|
|
## Desc: Installs sbt
|
|
################################################################################
|
|
|
|
source $HELPER_SCRIPTS/install.sh
|
|
|
|
# Install latest sbt release
|
|
downloadUrl=$(get_github_package_download_url "sbt/sbt" "endswith(\".tgz\")")
|
|
download_with_retries "$downloadUrl" "/tmp" "sbt.tgz"
|
|
tar zxf /tmp/sbt.tgz -C /usr/share
|
|
ln -s /usr/share/sbt/bin/sbt /usr/bin/sbt
|
|
|
|
invoke_tests "Tools" "Sbt" |