Files
runner-images/images/ubuntu/scripts/build/install-gcc-compilers.sh
T

18 lines
510 B
Bash
Raw Normal View History

2020-10-07 13:49:40 +05:00
#!/bin/bash -e
################################################################################
2023-11-22 21:49:23 +01:00
## File: install-gcc-compilers.sh
## Desc: Install GNU C++ compilers
################################################################################
2020-09-24 20:49:22 +03:00
# Source the helpers for use with the script
source $HELPER_SCRIPTS/install.sh
2020-09-24 20:49:22 +03:00
versions=$(get_toolset_value '.gcc.versions[]')
2020-09-24 20:49:22 +03:00
for version in ${versions[*]}; do
2023-12-26 12:50:52 +01:00
echo "Installing $version..."
2024-05-29 13:43:07 +02:00
apt-get install $version
2020-02-04 17:14:16 +03:00
done
2023-11-22 21:49:23 +01:00
invoke_tests "Tools" "gcc"