mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-11-15 13:15:43 +08:00
23 lines
401 B
YAML
23 lines
401 B
YAML
name: linux-builds
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, ubuntu-18.04, ubuntu-16.04]
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: install qt
|
|
run: |
|
|
sudo apt-get update --fix-missing
|
|
sudo apt-get install qt5-default
|
|
- name: qmake
|
|
run: qmake
|
|
- name: make
|
|
run: make -j4
|