mirror of
https://github.com/mapmapteam/mapmap.git
synced 2026-04-01 04:59:45 +02:00
34 lines
640 B
YAML
34 lines
640 B
YAML
# Build a Qt project on Ubuntu
|
|
name: Build on Ubuntu (old)
|
|
|
|
on:
|
|
push:
|
|
branches: [ develop ]
|
|
pull_request:
|
|
branches: [ develop ]
|
|
|
|
jobs:
|
|
build:
|
|
if: false # Disable for now
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Install Qt
|
|
uses: jurplel/install-qt-action@v4
|
|
with:
|
|
version: '5.12.12'
|
|
host: 'linux'
|
|
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
|