mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 06:08:07 +00:00
* rework chromium installation * added GetChromiumRevision function * changed getting chrome version * fixed GetChromiumRevision function * fixed CHROME_VERSION variable * move chromium installation to google-chrome.sh * added -qq for unzip * added comments to GetChromiumRevision function * updated tests and sofware report Co-authored-by: Nikita Bykov <v-nibyko@microsoft.com>
15 lines
570 B
Bash
15 lines
570 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: basic.sh
|
|
## Desc: Installs basic command line utilities and dev packages
|
|
################################################################################
|
|
source $HELPER_SCRIPTS/install.sh
|
|
|
|
common_packages=$(get_toolset_value .apt.common_packages[])
|
|
cmd_packages=$(get_toolset_value .apt.cmd_packages[])
|
|
for package in $common_packages $cmd_packages; do
|
|
echo "Install $package"
|
|
apt-get install -y --no-install-recommends $package
|
|
done
|
|
|
|
invoke_tests "Apt" |