mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-12-26 08:01:32 +08:00
18 lines
297 B
YAML
18 lines
297 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 -o Acquire::Check-Valid-Until=false install qt5-default
|
|
- name: qmake
|
|
run: qmake
|
|
- name: make
|
|
run: make -j4
|