From 0b5fd52f99bf3c308d121c0e3ca9179a1169df88 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 | 35 +++++++++++++++++++++++++++----- 1 file changed, 30 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 2898034..81728e0 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -6,21 +6,46 @@ on: workflow_dispatch: jobs: - Ubuntu: - runs-on: ubuntu-latest + Build-Qtk: + strategy: + fail-fast: false + matrix: + os: [ubuntu-latest, windows-latest, macos-latest] + include: + - os: ubuntu-latest + CMAKE_PARAMS: -DCMAKE_PREFIX_PATH=/home/runner/work/qtk/Qt/6.3.1/gcc_64/ + - os: windows-latest + CMAKE_PARAMS: -DCMAKE_PREFIX_PATH=D:/a/qtk/qtk/Qt/6.3.1/mingw81_64/ -DCMAKE_TOOLCHAIN_FILE=D:/a/qtk/qtk/vcpkg/scripts/buildsystems/vcpkg.cmake + - os: macos-latest + CMAKE_PARAMS: -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.2.3' + version: '6.3.1' - - name: Install Assimp + - 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/ && cmake --build . \ No newline at end of file + cmake .. ${{ matrix.CMAKE_PARAMS }} && cmake --build . \ No newline at end of file