Add CI build for CMake 3.5 with GCC 5.3

This commit is contained in:
JosiahWI 2022-11-06 18:56:45 -06:00 committed by Josiah VanderZee
parent 3d2d3f8d5a
commit b4c4325ea4
1 changed files with 26 additions and 0 deletions

View File

@ -132,6 +132,32 @@ 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 g++-5 ninja-build libidn11 libxi-dev libgl1-mesa-dev libpng-dev libjpeg-dev zlib1g-dev -qyy
- name: Setup CMake
uses: jwlawson/actions-setup-cmake@v1.13
with:
cmake-version: "3.5.x"
- name: Build
run: |
cmake -G Ninja -DCMAKE_CXX_COMPILER=/usr/bin/g++-5 -DCMAKE_BUILD_TYPE=Release .
cmake --build .
- name: Test
run: |
./bin/Linux/tests
mingw:
name: "MinGW ${{matrix.config.variant}}${{matrix.config.extras}}"
runs-on: ubuntu-22.04