mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-24 10:28:10 +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
14 lines
426 B
Bash
14 lines
426 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: hhvm.sh
|
|
## Desc: Installs hhvm
|
|
################################################################################
|
|
|
|
|
|
apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xB4112585D386EB94
|
|
add-apt-repository https://dl.hhvm.com/ubuntu
|
|
apt-get update
|
|
apt-get -qq install -y hhvm
|
|
|
|
invoke_tests "Tools" "HHVM"
|