From 2478bb430861751686f0441cb863d9eaed71204c Mon Sep 17 00:00:00 2001 From: Michael Fabian 'Xaymar' Dirks Date: Sun, 14 May 2023 01:56:19 +0200 Subject: [PATCH] ci: Add some messaging for better log debugging --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0d1dbd3..f2273a7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -356,11 +356,13 @@ jobs: - name: "Install Build Tools" shell: bash run: | + echo "Installing essential tools..." sudo apt-get -qq update sudo apt-get install build-essential checkinstall pkg-config cmake ninja-build git # Install the appropriate compiler IFS=$'-' compiler=($(echo "${{ matrix.compiler }}")) # ToDo: Can this be done without invoking a sub-shell? + echo "Installing '${compiler[0]}' version ${compiler[1]}..." if [[ "${compiler[0]}" == "GCC" ]]; then sudo apt-get install binutils gcc-${compiler[1]} g++-${compiler[1]} sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-${compiler[1]} 800 --slave /usr/bin/g++ g++ /usr/bin/g++-${compiler[1]}