mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-11-15 21:25:44 +08:00
18 lines
261 B
YAML
18 lines
261 B
YAML
name: Ubuntu 18.04
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-18.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: install qt
|
|
run: sudo apt-get install qt5-default
|
|
- name: qmake
|
|
run: qmake
|
|
- name: make
|
|
run: make -j4
|