Build Calaos Installer MacOS release #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Calaos Installer MacOS release | |
on: workflow_dispatch | |
jobs: | |
compile: | |
name: Build | |
runs-on: macos-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install Qt | |
uses: jurplel/install-qt-action@v3 | |
with: | |
version: 6.6.1 | |
- name: Install deps | |
run: | | |
brew update | |
brew install kde-karchive | |
- name: Compile | |
run: | | |
mkdir build && cd build | |
qmake ../calaos_installer.pro CONFIG+=release | |
make -j8 | |
qmake ../../machine_creator/machine_creator.pro CONFIG+=release | |
make -j8 | |