mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-11-15 13:15:43 +08:00
20 lines
312 B
YAML
20 lines
312 B
YAML
name: linux-builds
|
||
|
||
on: [push]
|
||
|
||
jobs:
|
||
build:
|
||
|
||
runs-on: ubuntu-18.04
|
||
|
||
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
|