Skip to content

Commit

Permalink
Create qt-linux.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
aalex authored May 16, 2020
1 parent c01a766 commit 6dce0f4
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/qt-linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Build a Qt project on Ubuntu
name: Build on Ubuntu

on:
push:
branches: [ dev ]
pull_request:
branches: [ dev ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Install Qt
uses: jurplel/install-qt-action@v2
with:
version: '5.12.8'
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

0 comments on commit 6dce0f4

Please sign in to comment.