2022-11-24 22:26:53 +00:00
|
|
|
name: All Builds
|
2022-07-17 00:11:07 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
2022-08-06 19:09:59 +00:00
|
|
|
Build-Qtk:
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2022-08-06 19:18:55 +00:00
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
2022-08-06 19:09:59 +00:00
|
|
|
include:
|
|
|
|
- os: ubuntu-latest
|
2023-01-15 00:01:34 +00:00
|
|
|
cmake: -DCMAKE_PREFIX_PATH="/home/runner/work/qtk/Qt/6.5.0/gcc_64/"
|
2022-08-06 19:18:55 +00:00
|
|
|
- os: windows-latest
|
2023-01-15 00:01:34 +00:00
|
|
|
cmake: -DCMAKE_PREFIX_PATH="D:/a/qtk/qtk/Qt/6.5.0/mingw81_64/"
|
2022-08-06 19:09:59 +00:00
|
|
|
- os: macos-latest
|
2023-01-15 00:01:34 +00:00
|
|
|
cmake: -DCMAKE_PREFIX_PATH="/home/runner/work/qtk/Qt/6.5.0/gcc_64/"
|
2022-08-06 19:09:59 +00:00
|
|
|
|
|
|
|
runs-on: ${{ matrix.os }}
|
2022-07-17 00:11:07 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Install Qt
|
|
|
|
uses: jurplel/install-qt-action@v2
|
|
|
|
with:
|
2023-01-15 00:01:34 +00:00
|
|
|
version: '6.5.0'
|
2022-07-17 00:11:07 +00:00
|
|
|
|
2022-08-21 19:37:42 +00:00
|
|
|
- name: Chocolatey Action
|
|
|
|
if: matrix.os == 'windows-latest'
|
2023-01-15 00:01:34 +00:00
|
|
|
uses: crazy-max/ghaction-chocolatey@v2
|
2022-08-21 19:37:42 +00:00
|
|
|
with:
|
2023-01-15 00:01:34 +00:00
|
|
|
args: install pkgconfiglite
|
2022-08-21 19:37:42 +00:00
|
|
|
|
2022-07-17 00:11:07 +00:00
|
|
|
- name: Build Qtk
|
2022-08-06 19:09:59 +00:00
|
|
|
shell: bash
|
2022-07-17 00:11:07 +00:00
|
|
|
run: |
|
2023-01-15 00:01:34 +00:00
|
|
|
cmake -B build/ ${{ matrix.cmake }} -DQTK_UPDATE_SUBMODULES=ON
|
|
|
|
cmake --build build/
|
|
|
|
|
2023-01-15 22:50:50 +00:00
|
|
|
- name: OSX Stuff
|
|
|
|
if: matrix.os == 'macos-latest'
|
2023-01-15 00:01:34 +00:00
|
|
|
shell: bash
|
|
|
|
run: |
|
2023-01-15 22:50:50 +00:00
|
|
|
brew install tree
|
|
|
|
tree build/
|
2023-01-15 00:01:34 +00:00
|
|
|
|
2023-01-15 22:50:50 +00:00
|
|
|
- name: Package Qtk
|
2023-01-15 00:01:34 +00:00
|
|
|
shell: bash
|
|
|
|
run: |
|
2023-01-15 22:50:50 +00:00
|
|
|
cmake --build build/ --target package
|
|
|
|
|
|
|
|
# - name: Package Qtk Sources
|
|
|
|
# if: matrix.os != 'macos-latest'
|
|
|
|
# shell: bash
|
|
|
|
# run: |
|
|
|
|
# cmake --build build/ --target package_source
|
2023-01-15 00:01:34 +00:00
|
|
|
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: qtk-packages-${{ matrix.os }}
|
|
|
|
path: |
|
|
|
|
build/packages/
|
|
|
|
!build/packages/_CPack_Packages/*
|
|
|
|
|
|
|
|
- name: Install Qtk
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
cmake --install build/
|
|
|
|
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: qtk-${{ matrix.os }}
|
|
|
|
path: install/*
|
2022-08-21 21:49:15 +00:00
|
|
|
|
|
|
|
Build-Qtk-Assimp-Targets:
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, macos-latest]
|
|
|
|
include:
|
|
|
|
- os: ubuntu-latest
|
2023-01-15 00:01:34 +00:00
|
|
|
cmake: -DCMAKE_PREFIX_PATH="/home/runner/work/qtk/Qt/6.5.0/gcc_64/"
|
2022-08-21 21:49:15 +00:00
|
|
|
- os: macos-latest
|
2023-01-15 00:01:34 +00:00
|
|
|
cmake: -DCMAKE_PREFIX_PATH="/home/runner/work/qtk/Qt/6.5.0/gcc_64/" -DASSIMP_NEW_INTERFACE=ON
|
2022-08-21 21:49:15 +00:00
|
|
|
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Install Qt
|
|
|
|
uses: jurplel/install-qt-action@v2
|
|
|
|
with:
|
2023-01-15 00:01:34 +00:00
|
|
|
version: '6.5.0'
|
2022-08-21 21:49:15 +00:00
|
|
|
|
|
|
|
- name: Install Assimp MacOS
|
|
|
|
if: matrix.os == 'macos-latest'
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
brew install assimp
|
|
|
|
|
|
|
|
- name: Install Assimp Ubuntu
|
|
|
|
if: matrix.os == 'ubuntu-latest'
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
sudo apt install libassimp-dev
|
|
|
|
|
|
|
|
- name: Build Qtk
|
|
|
|
shell: bash
|
|
|
|
run: |
|
2023-01-15 22:50:50 +00:00
|
|
|
cmake -B build/ ${{ matrix.cmake }} && cmake --build build/
|
2023-01-15 00:01:34 +00:00
|
|
|
|
|
|
|
# TODO: Enable with tag only when done testing
|
|
|
|
# Release-Qtk:
|
|
|
|
# needs: Build-Qtk
|
|
|
|
# if: "always()"
|
|
|
|
# strategy:
|
|
|
|
# fail-fast: false
|
|
|
|
# matrix:
|
|
|
|
# os: [ubuntu-latest, windows-latest, macos-latest]
|
|
|
|
# include:
|
|
|
|
# - os: ubuntu-latest
|
|
|
|
# cqt: CQtDeployer.deb
|
|
|
|
# url: https://github.com/QuasarApp/CQtDeployer/releases/download/v1.6.2277/CQtDeployer_1.6.2277.ecc6eed_Linux_x86_64.deb
|
|
|
|
# qmake: /home/runner/work/qtk/Qt/6.5.0/gcc_64/bin/qmake
|
|
|
|
# - os: windows-latest
|
|
|
|
# cqt: CQtDeployer.exe
|
|
|
|
# url: https://github.com/QuasarApp/CQtDeployer/releases/download/v1.6.2277/CQtDeployer_1.6.2277.ecc6eed_Windows_AMD64.exe
|
|
|
|
# qmake: D:/a/qtk/qtk/Qt/6.5.0/mingw81_64/bin/qmake
|
|
|
|
# - os: macos-latest
|
|
|
|
# cqt: CQtDeployer.run
|
|
|
|
# url: https://github.com/QuasarApp/CQtDeployer/releases/download/v1.6.2277/CQtDeployer_1.6.2277.ecc6eed_Linux_x86_64.run
|
|
|
|
# qmake: /home/runner/work/qtk/Qt/6.5.0/gcc_64/bin/qmake
|
|
|
|
# runs-on: ${{ matrix.os }}
|
|
|
|
#
|
|
|
|
# steps:
|
|
|
|
# - uses: actions/download-artifact@v3
|
|
|
|
# with:
|
|
|
|
# name: qtk-${{ matrix.os }}
|
|
|
|
#
|
|
|
|
# - name: Install Qt
|
|
|
|
# uses: jurplel/install-qt-action@v2
|
|
|
|
# with:
|
|
|
|
# version: '6.5.0'
|
|
|
|
#
|
|
|
|
# - name: Package Qtk
|
|
|
|
# shell: bash
|
|
|
|
# run: |
|
|
|
|
# wget -O ${{ matrix.cqt }} ${{ matrix.url }}
|
|
|
|
# apt install -y ./${{ matrix.cqt }}
|
|
|
|
# cqtdeployer -bin qtk-main -qmake ${{ matrix.qmake }}
|
|
|
|
#
|
|
|
|
# - uses: actions/upload-artifact@v3
|
|
|
|
# with:
|
|
|
|
# name: qtk-installer-${{ matrix.os }}
|
|
|
|
# path: DistributionKit/
|