From f5cdff910906b3d592affd1d47fb98872fcd01c5 Mon Sep 17 00:00:00 2001 From: JosiahWI Date: Fri, 1 Dec 2023 18:07:28 -0600 Subject: [PATCH] Axe the minimum-cmake CI build This is useful, but has no business being in this PR. Off with its head. --- .github/workflows/build.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e71feafa1..a92b8101b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -145,35 +145,6 @@ jobs: cd bin/Linux LIBGL_ALWAYS_SOFTWARE=true xvfb-run ./AutomatedTest ogles2 - linux-minimum-cmake: - runs-on: ubuntu-latest - container: - image: ubuntu:bionic - env: { LANG: "C.UTF-8" } - steps: - - uses: actions/checkout@v2 - - name: Install deps - run: | - apt-get update - apt-get install unzip g++-5 libidn11 libxi-dev libgl1-mesa-dev libpng-dev libjpeg-dev zlib1g-dev -qyy - - - name: Setup CMake - uses: lukka/get-cmake@latest - with: - cmakeVersion: 3.5.2 - - - name: Build - run: | - mkdir build - cd build - cmake -G Ninja -DCMAKE_C_COMPILER=/usr/bin/gcc-5 -DCMAKE_CXX_COMPILER=/usr/bin/g++-5 -DCMAKE_BUILD_TYPE=Release .. - cmake --build . - cd .. - - - name: Test - run: | - ./build/bin/Linux/tests - mingw: name: "MinGW ${{matrix.config.variant}}${{matrix.config.extras}}" runs-on: ubuntu-20.04