From 59070c1412a71eea2124ad7088faeafdaf2239dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20T=C5=AFma?= Date: Wed, 27 Oct 2021 15:42:35 +0200 Subject: [PATCH] Added GitHub actions OS X build --- .github/workflows/osx.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/osx.yml diff --git a/.github/workflows/osx.yml b/.github/workflows/osx.yml new file mode 100644 index 00000000..ed7e376f --- /dev/null +++ b/.github/workflows/osx.yml @@ -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