43 lines
1.1 KiB
YAML
43 lines
1.1 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]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Install Qt
|
|
uses: jurplel/install-qt-action@v3
|
|
with:
|
|
version: '6.3'
|
|
|
|
- name: Install Assimp Linux / MacOS
|
|
if: matrix.os != 'windows-latest'
|
|
shell: bash
|
|
run: |
|
|
sudo apt install libassimp-dev -y
|
|
|
|
- name: Install Assimp Windows
|
|
if: matrix.os == 'windows-latest'
|
|
shell: bash
|
|
run: |
|
|
git clone https://github.com/Microsoft/vcpkg.git
|
|
cd vcpkg
|
|
./bootstrap-vcpkg.sh
|
|
./vcpkg integrate install
|
|
vcpkg install assimp
|
|
|
|
- name: Build Qtk
|
|
shell: bash
|
|
run: |
|
|
mkdir build && cd build
|
|
cmake .. -DCMAKE_PREFIX_PATH=/home/runner/work/qtk/Qt/6.2.3/gcc_64/ -DCMAKE_TOOLCHAIN_FILE=D:/a/qtk/qtk/vcpkg/scripts/buildsystems/vcpkg.cmake && cmake --build . |