mirror of
https://github.com/actions/runner-images.git
synced 2025-12-10 19:16:48 +00:00
* [ubuntu] Refactor Github Package URL function * Fix function and selenium version * Remove beta/release candidate versions
16 lines
540 B
Bash
16 lines
540 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: install-sbt.sh
|
|
## Desc: Install sbt
|
|
################################################################################
|
|
|
|
source $HELPER_SCRIPTS/install.sh
|
|
|
|
# Install latest sbt release
|
|
download_url=$(resolve_github_release_asset_url "sbt/sbt" "endswith(\".tgz\")" "latest")
|
|
archive_path=$(download_with_retry "$download_url")
|
|
tar zxf "$archive_path" -C /usr/share
|
|
ln -s /usr/share/sbt/bin/sbt /usr/bin/sbt
|
|
|
|
invoke_tests "Tools" "Sbt"
|