-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (36 loc) · 863 Bytes
/
Copy pathUbuntu.yml
File metadata and controls
45 lines (36 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Ubuntu CI Test
on:
push:
branches: [ main, master, dev ]
pull_request:
branches: [ main, master, dev ]
jobs:
build:
name: Build and test
runs-on: ubuntu-22.04
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Install dependencies
run: |
sudo apt-get update
make dependency
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
aqtversion: '==3.1.*'
version: '6.7.1'
host: 'linux'
target: 'desktop'
arch: 'linux_gcc_64'
modules: 'qtconnectivity qthttpserver qtmultimedia qtnetworkauth qtremoteobjects qtscxml'
tools: 'tools_ninja'
- name: cleaning up
run: |
make clean
- name: building
run: |
make build-debug
- name: testing
run: |
make test