109 lines
3.0 KiB
YAML
109 lines
3.0 KiB
YAML
name: Build Test
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
Build-Qtk:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
|
include:
|
|
- os: ubuntu-latest
|
|
cmake: -DCMAKE_PREFIX_PATH="/home/runner/work/qtk/Qt/6.3.1/gcc_64/"
|
|
- os: windows-latest
|
|
cmake: -DCMAKE_PREFIX_PATH="D:/a/qtk/qtk/Qt/6.3.1/mingw81_64/" -DASSIMP_WARNINGS_AS_ERRORS=OFF
|
|
- os: macos-latest
|
|
cmake: -DCMAKE_PREFIX_PATH="/home/runner/work/qtk/Qt/6.3.1/gcc_64/"
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Install Qt
|
|
uses: jurplel/install-qt-action@v2
|
|
with:
|
|
version: '6.3.1'
|
|
|
|
- name: Chocolatey Action
|
|
if: matrix.os == 'windows-latest'
|
|
uses: crazy-max/ghaction-chocolatey@v2.0.0
|
|
with:
|
|
args: install pkgconfiglite
|
|
|
|
- name: Build Qtk
|
|
shell: bash
|
|
run: |
|
|
cmake -S . -B build/ ${{ matrix.cmake }} && cmake --build build/ \
|
|
--target qtk-main
|
|
|
|
|
|
Build-Qtk-Assimp-Targets:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest]
|
|
include:
|
|
- os: ubuntu-latest
|
|
cmake: -DCMAKE_PREFIX_PATH="/home/runner/work/qtk/Qt/6.3.1/gcc_64/" -DQTK_UPDATE_SUBMODULES=OFF
|
|
- os: macos-latest
|
|
cmake: -DCMAKE_PREFIX_PATH="/home/runner/work/qtk/Qt/6.3.1/gcc_64/" -DASSIMP_NEW_INTERFACE=ON -DQTK_UPDATE_SUBMODULES=OFF
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Install Qt
|
|
uses: jurplel/install-qt-action@v2
|
|
with:
|
|
version: '6.3.1'
|
|
|
|
- name: Install Assimp MacOS
|
|
if: matrix.os == 'macos-latest'
|
|
shell: bash
|
|
run: |
|
|
brew install assimp
|
|
|
|
- name: Install Assimp Ubuntu
|
|
if: matrix.os == 'ubuntu-latest'
|
|
shell: bash
|
|
run: |
|
|
sudo apt install libassimp-dev
|
|
|
|
- name: Build Qtk
|
|
shell: bash
|
|
run: |
|
|
cmake -S . -B build/ ${{ matrix.cmake }} && cmake --build build/ \
|
|
--target qtk-main
|
|
|
|
Build-Qtk-Static:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
|
include:
|
|
- os: ubuntu-latest
|
|
cmake: -DCMAKE_PREFIX_PATH="/home/runner/work/qtk/Qt/6.3.1/gcc_64/" -DQTK_BUILD_SHARED_LIBS=OFF
|
|
- os: windows-latest
|
|
cmake: -DCMAKE_PREFIX_PATH="D:/a/qtk/qtk/Qt/6.3.1/mingw81_64/" -DQTK_BUILD_SHARED_LIBS=OFF
|
|
- os: macos-latest
|
|
cmake: -DCMAKE_PREFIX_PATH="/home/runner/work/qtk/Qt/6.3.1/gcc_64/" -DQTK_BUILD_SHARED_LIBS=OFF
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Install Qt
|
|
uses: jurplel/install-qt-action@v2
|
|
with:
|
|
version: '6.3.1'
|
|
|
|
- name: Build Qtk
|
|
shell: bash
|
|
run: |
|
|
cmake -S . -B build/ ${{ matrix.cmake }} && cmake --build build/ \
|
|
--target qtk-main
|