mirror of
https://github.com/actions/runner-images.git
synced 2025-12-13 04:37:09 +00:00
* dotnet cmd codeql tests * fixed dotnet tests, added codeql to toolset * changed codeql version to wildcard * removed unused import and a test call * tmp * lowercase file name * removed sourcing invoke-tests Co-authored-by: Leonid Lapshin <originalnoe-nazvanie@yandex.ru>
15 lines
582 B
Bash
15 lines
582 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: basic.sh
|
|
## Desc: Installs basic command line utilities and dev packages
|
|
################################################################################
|
|
|
|
toolset="$INSTALLER_SCRIPT_FOLDER/toolset.json"
|
|
common_packages=$(jq -r ".apt.common_packages[]" $toolset)
|
|
cmd_packages=$(jq -r ".apt.cmd_packages[]" $toolset)
|
|
for package in $common_packages $cmd_packages; do
|
|
echo "Install $package"
|
|
apt-get install -y --no-install-recommends $package
|
|
done
|
|
|
|
invoke_tests "Apt" |