qtk/.github/workflows/build-test.yml

46 lines
1.1 KiB
YAML
Raw Normal View History

name: Build Test
on:
push:
pull_request:
workflow_dispatch:
jobs:
2022-08-06 18:52:22 +00:00
Build-Qtk:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
include:
- os: ubuntu-latest
CMAKE_PARAMS: -DCMAKE_PREFIX_PATH=/home/runner/work/qtk/Qt/6.3.1/gcc_64/
- os: macos-latest
CMAKE_PARAMS: -DCMAKE_PREFIX_PATH=/home/runner/work/qtk/Qt/6.3.1/gcc_64/ -DASSIMP_NEW_INTERFACE=on
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Install Qt
uses: jurplel/install-qt-action@v2
with:
2022-08-06 18:52:22 +00:00
version: '6.3.1'
2022-08-06 18:52:22 +00:00
- name: Install Assimp Linux
if: matrix.os == 'ubuntu-latest'
shell: bash
run: |
sudo apt install libassimp-dev -y
2022-08-06 18:52:22 +00:00
- name: Install Assimp MacOS
if: matrix.os == 'macos-latest'
shell: bash
run: |
brew install assimp
- name: Build Qtk
2022-08-06 18:52:22 +00:00
shell: bash
run: |
mkdir build && cd build
2022-08-06 18:52:22 +00:00
cmake .. ${{ matrix.CMAKE_PARAMS }} && cmake --build .