1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-06 06:43:22 +02:00
GPXSee/.github/workflows/osx.yml

26 lines
467 B
YAML
Raw Normal View History

2021-10-27 15:42:35 +02:00
name: OS X
2021-10-27 15:54:47 +02:00
env:
2021-10-27 15:56:54 +02:00
PATH: "/usr/local/opt/qt@5/bin:$PATH"
2021-10-27 15:54:47 +02:00
2021-10-27 15:42:35 +02:00
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
2021-10-27 15:46:02 +02:00
- name: Create localization
2021-10-27 15:42:35 +02:00
run: lrelease gpxsee.pro
2021-10-27 15:46:02 +02:00
- name: Configure build
2021-10-27 15:42:35 +02:00
run: qmake gpxsee.pro
- name: Build project
run: make -j3