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-06 19:18:55 +00:00
|
|
|
cmake: -DCMAKE_PREFIX_PATH="/home/runner/work/qtk/Qt/6.3.1/gcc_64/;../assimp"
|
|
|
|
- os: windows-latest
|
|
|
|
cmake: -DCMAKE_PREFIX_PATH="D:/a/qtk/qtk/Qt/6.3.1/mingw81_64/;../assimp" -DASSIMP_NEW_INTERFACE=on
|
2022-08-06 19:09:59 +00:00
|
|
|
- os: macos-latest
|
2022-08-06 19:18:55 +00:00
|
|
|
cmake: -DCMAKE_PREFIX_PATH="/home/runner/work/qtk/Qt/6.3.1/gcc_64/;../assimp" -DASSIMP_NEW_INTERFACE=on
|
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
|
|
|
|
|
2022-08-06 19:18:55 +00:00
|
|
|
- name: Clone Assimp
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
repository: 'assimp/assimp'
|
|
|
|
path: 'assimp'
|
|
|
|
|
|
|
|
- name: Build Assimp
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
pwd
|
|
|
|
ls
|
|
|
|
cmake -S assimp/ -B assimp/build/ -DCMAKE_INSTALL_PREFIX=../assimp && cmake --build assimp/build
|
2022-07-17 00:11:07 +00:00
|
|
|
- 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
|
|
|
|
2022-08-06 19:18:55 +00:00
|
|
|
# - name: Install Assimp Linux
|
|
|
|
# if: matrix.os == 'ubuntu-latest'
|
|
|
|
# shell: bash
|
|
|
|
# run: |
|
|
|
|
# sudo apt install libassimp-dev -y
|
|
|
|
#
|
|
|
|
# - name: Install Assimp MacOS
|
|
|
|
# if: matrix.os == 'macos-latest'
|
|
|
|
# shell: bash
|
|
|
|
# run: |
|
|
|
|
# brew install assimp
|
|
|
|
#
|
|
|
|
# - 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
|
2022-07-17 00:11:07 +00:00
|
|
|
|
2022-08-06 19:09:59 +00:00
|
|
|
- name: Install Assimp MacOS
|
|
|
|
if: matrix.os == 'macos-latest'
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
brew install assimp
|
|
|
|
|
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/
|