Add github ci

This commit is contained in:
Jihadist 2023-01-29 22:34:55 +03:00 committed by Rick Blommers
parent 1257a45f5f
commit a6051c8870

47
.github/workflows/cmake.yml vendored Normal file
View File

@ -0,0 +1,47 @@
name: CMake
on:
push:
branches:
- master
- main
tags:
- "*"
pull_request:
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
jobs:
build-and-test:
name: ${{ matrix.os }}-Qt-${{ matrix.qt_version }}-shared-${{ matrix.shared }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, ubuntu-22.04, macos-11, macos-12, windows-2019, windows-2022]
qt_version: [5.12.12, 5.15.2, 6.4.0]
shared: [ON, OFF]
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: ${{ matrix.qt_version }}
cache: 'true'
cache-key-prefix: ${{ runner.os }}-Qt-Cache-${{ matrix.qt_version }}
dir: ${{ github.workspace }}/Qt
- name: Configure (${{ matrix.configuration }})
run: cmake -DCMAKE_BUILD_TYPE="${{env.BUILD_TYPE}}" -DBUILD_SHARED_LIBS=${{ matrix.shared }} -B "${{github.workspace}}/build" -S "QtAwesome"
- name: Build with ${{ matrix.compiler }}
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}