From 0931a102aa0b4d4c5bb8236bcfb5184d15628421 Mon Sep 17 00:00:00 2001 From: Shaun Reed Date: Wed, 3 Aug 2022 00:37:15 -0400 Subject: [PATCH] Windows CI --- .github/workflows/build-test.yml | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 2898034..821d8f4 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -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 . \ No newline at end of file