1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-11-24 03:35:53 +01:00

Added GitHub actions OS X build

This commit is contained in:
Martin Tůma 2021-10-27 15:42:35 +02:00
parent 09aefd1cc1
commit 59070c1412

21
.github/workflows/osx.yml vendored Normal file
View File

@ -0,0 +1,21 @@
name: OS X
on:
push:
branches:
- master
jobs:
build:
name: GPXSee
runs-on: macos-10.15
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies
run: brew install qt5
- name: Configure build
run: lrelease gpxsee.pro
run: qmake gpxsee.pro
- name: Build project
run: make -j3