From 90f55e607d66dced50b16b36187a51c5a0d42746 Mon Sep 17 00:00:00 2001 From: Ben Wiederhake Date: Sat, 7 Nov 2020 18:49:33 +0100 Subject: [PATCH] Meta: Ensure availability of python --- .github/workflows/cmake.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 7c64550145..e4d5a86e8c 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -33,7 +33,7 @@ jobs: - name: Use GCC 10 instead run: sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 60 --slave /usr/bin/g++ g++ /usr/bin/g++-10 - name: Check versions - run: set +e; g++ --version; g++-10 --version; clang-format --version; clang-format-10 --version + run: set +e; g++ --version; g++-10 --version; clang-format --version; clang-format-10 --version; python --version; python3 --version # === PREPARE FOR BUILDING ===