mirror of
https://github.com/mapmapteam/mapmap.git
synced 2026-06-16 12:33:19 +02:00
Create qt-macos.yml
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
# Build a Qt project on macOS
|
||||
name: Build on macOS
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ dev ]
|
||||
pull_request:
|
||||
branches: [ dev ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: macos-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Install Qt
|
||||
uses: jurplel/install-qt-action@v2
|
||||
with:
|
||||
target: 'desktop'
|
||||
modules: 'gui core serialport network opengl xml'
|
||||
- name: qmake
|
||||
run: qmake .
|
||||
- name: make
|
||||
run: make
|
||||
- name: make check
|
||||
run: make check
|
||||
|
||||
# - name: make distcheck
|
||||
# run: make distcheck
|
||||
Reference in New Issue
Block a user