2022-07-17 00:11:07 +00:00
|
|
|
name: Build Test
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
2022-08-06 19:09:59 +00:00
|
|
|
Build-Qtk:
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2022-08-06 19:18:55 +00:00
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
2022-08-06 19:09:59 +00:00
|
|
|
include:
|
|
|
|
- os: ubuntu-latest
|
2022-08-14 22:17:05 +00:00
|
|
|
cmake: -DCMAKE_PREFIX_PATH="/home/runner/work/qtk/Qt/6.3.1/gcc_64/"
|
2022-08-06 19:18:55 +00:00
|
|
|
- os: windows-latest
|
2022-08-14 22:17:05 +00:00
|
|
|
cmake: -DCMAKE_PREFIX_PATH="D:/a/qtk/qtk/Qt/6.3.1/mingw81_64/"
|
2022-08-06 19:09:59 +00:00
|
|
|
- os: macos-latest
|
2022-08-14 22:17:05 +00:00
|
|
|
cmake: -DCMAKE_PREFIX_PATH="/home/runner/work/qtk/Qt/6.3.1/gcc_64/"
|
2022-08-06 19:09:59 +00:00
|
|
|
|
|
|
|
runs-on: ${{ matrix.os }}
|
2022-07-17 00:11:07 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Install Qt
|
|
|
|
uses: jurplel/install-qt-action@v2
|
|
|
|
with:
|
2022-08-06 19:09:59 +00:00
|
|
|
version: '6.3.1'
|
2022-07-17 00:11:07 +00:00
|
|
|
|
|
|
|
- name: Build Qtk
|
2022-08-06 19:09:59 +00:00
|
|
|
shell: bash
|
2022-07-17 00:11:07 +00:00
|
|
|
run: |
|
2022-08-06 19:18:55 +00:00
|
|
|
cmake -S . -B build/ ${{ matrix.cmake }} && cmake --build build/
|