Skip to content

Sort the Open World sub-menu by world name. (#370) #170

Sort the Open World sub-menu by world name. (#370)

Sort the Open World sub-menu by world name. (#370) #170

Workflow file for this run

name: MacOS Qt CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
fail-fast: false
matrix:
name: [macos-5.9, macos-5.12]
include:
- name: macos-5.9
os: macos-latest
qt: '5.9.9'
artifact: minutor.dmg
- name: macos-5.12
os: macos-latest
qt: '5.12.10'
artifact: minutor.dmg
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
# - name: Cache Qt
# id: cache-qt
# uses: actions/cache@v3
# with:
# path: ${{ runner.workspace }}/Qt
# key: ${{ runner.os }}-QtCache-${{ matrix.qt }}
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: ${{ matrix.qt }}
target: 'desktop'
# manually-cached: ${{ steps.cache-qt.outputs.cache-hit }}
cache: 'true'
cache-key-prefix: ${{ runner.os }}-QtCache-${{ matrix.qt }}
- name: Create BUILD folder
run: |
mkdir ../build
- name: Build (MacOS)
working-directory: ../build
run: |
qmake ${{ github.workspace }}/minutor.pro
make
- name: Deploy Qt (macOS)
working-directory: ../build
run: |
macdeployqt minutor.app -codesign=- -dmg
- name: Archive build result
uses: actions/upload-artifact@v3
with:
name: Binary ${{ matrix.name }}
path: ${{ runner.workspace }}/build/${{ matrix.artifact }}