Files
mapmap/.github/workflows/qt-macos.yml
Alexandre Quessy d1e063449e Update README, CONTRIBUTING and CI for Linux
Add a new CI file for Ubuntu

Disable the old github workflows

Fix the Ubuntu build
2026-01-09 16:06:02 -05:00

33 lines
609 B
YAML

# Build a Qt project on macOS
name: Build on macOS
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
jobs:
build:
if: false # Disable for now
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: '5.12.12'
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