mirror of
https://github.com/actions/runner-images.git
synced 2025-12-28 12:48:21 +08:00
* Create symlink for test running * Fix 1604 and 2004 templates * Fix php and haskell running * Minor fix * Fix new added tests * Fix symlink * Minor fix * Fix script permissions * Minor fix * Fix firefox and rust tests * Fix new merged tests
15 lines
587 B
Bash
15 lines
587 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: scala.sh
|
|
## Desc: Installs sbt
|
|
################################################################################
|
|
|
|
|
|
# Install sbt
|
|
# https://www.scala-sbt.org/1.x/docs/Installing-sbt-on-Linux.html
|
|
echo "deb https://dl.bintray.com/sbt/debian /" | sudo tee -a /etc/apt/sources.list.d/sbt.list
|
|
curl -sL "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x2EE0EA64E40A89B84B2DF73499E82A75642AC823" | apt-key add
|
|
apt-get -q update
|
|
apt-get -y install sbt
|
|
|
|
invoke_tests "Tools" "Sbt" |