mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2025-01-13 16:42:06 +08:00
18 lines
265 B
YAML
18 lines
265 B
YAML
name: ubuntu1804-build
|
|
|
|
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
|