Windows CI

This commit is contained in:
Shaun Reed 2022-08-03 00:37:15 -04:00
parent de87d1c40d
commit e31d526bac
1 changed files with 51 additions and 7 deletions

View File

@ -6,21 +6,65 @@ on:
workflow_dispatch: workflow_dispatch:
jobs: jobs:
Ubuntu: Build-Qtk:
runs-on: ubuntu-latest 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 -DASSIMP_NEW_INTERFACE=on
- os: macos-latest
CMAKE_PARAMS: -DCMAKE_PREFIX_PATH=/home/runner/work/qtk/Qt/6.3.1/gcc_64/ -DASSIMP_NEW_INTERFACE=on
runs-on: ${{ matrix.os }}
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- 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
- name: Install Qt - name: Install Qt
uses: jurplel/install-qt-action@v2 uses: jurplel/install-qt-action@v2
with: with:
version: '6.2.3' version: '6.3.1'
- name: Install Assimp # - name: Install Assimp Linux
run: | # if: matrix.os == 'ubuntu-latest'
sudo apt install libassimp-dev -y # 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
- name: Build Qtk - name: Build Qtk
shell: bash
run: | run: |
mkdir build && cd build mkdir build && cd build
cmake .. -DCMAKE_PREFIX_PATH=/home/runner/work/qtk/Qt/6.2.3/gcc_64/ && cmake --build . cmake .. ${{ matrix.CMAKE_PARAMS }} && cmake --build .