Windows CI
This commit is contained in:
parent
de87d1c40d
commit
5d5b9b6cb4
|
@ -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,22 @@ jobs:
|
|||
version: '6.2.3'
|
||||
|
||||
- name: Install Assimp
|
||||
if: ${{ matrix.os }} == ubuntu-latest
|
||||
run: |
|
||||
sudo apt install libassimp-dev -y
|
||||
|
||||
- name: Install Assimp Windows
|
||||
if: ${{ matrix.os }} == windows-latest
|
||||
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 .
|
Loading…
Reference in New Issue