Windows CI
This commit is contained in:
parent
de87d1c40d
commit
5d5b9b6cb4
|
@ -6,8 +6,11 @@ on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
Ubuntu:
|
Build-Qtk:
|
||||||
runs-on: ubuntu-latest
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest, windows-latest]
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
@ -17,10 +20,22 @@ jobs:
|
||||||
version: '6.2.3'
|
version: '6.2.3'
|
||||||
|
|
||||||
- name: Install Assimp
|
- name: Install Assimp
|
||||||
|
if: ${{ matrix.os }} == ubuntu-latest
|
||||||
run: |
|
run: |
|
||||||
sudo apt install libassimp-dev -y
|
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
|
- 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 .. -DCMAKE_PREFIX_PATH=/home/runner/work/qtk/Qt/6.2.3/gcc_64/ && cmake --build .
|
Loading…
Reference in New Issue