Windows CI

This commit is contained in:
Shaun Reed 2022-08-03 00:37:15 -04:00
parent de87d1c40d
commit 0931a102aa
1 changed files with 19 additions and 2 deletions

View File

@ -6,8 +6,11 @@ on:
workflow_dispatch:
jobs:
Ubuntu:
runs-on: ubuntu-latest
Build-Qtk:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
@ -17,10 +20,24 @@ jobs:
version: '6.2.3'
- name: Install Assimp
if: matrix.os == 'ubuntu-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/ && cmake --build .