mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 06:08:07 +00:00
* get rid of invoke_tests imports * add sudo * change path to /usr/bin/invoke_tests * create /usr/local/bin dir * remove local variables * fix group owner * set default 775 perm * delete invoke_tests symlink
14 lines
334 B
Bash
14 lines
334 B
Bash
#!/bin/bash -e -o pipefail
|
|
source ~/utils/utils.sh
|
|
|
|
echo "Installing Firefox..."
|
|
brew install --cask firefox
|
|
|
|
echo "Installing Geckodriver..."
|
|
brew_smart_install "geckodriver"
|
|
|
|
echo "Add GECKOWEBDRIVER to bashrc..."
|
|
echo "export GECKOWEBDRIVER=$(brew --prefix geckodriver)/bin" >> "${HOME}/.bashrc"
|
|
|
|
invoke_tests "Browsers" "Firefox"
|