-
Notifications
You must be signed in to change notification settings - Fork 20
80 lines (72 loc) · 1.95 KB
/
Copy pathbuild_tests_linux.yml
File metadata and controls
80 lines (72 loc) · 1.95 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
name: Linux Build Tests
# https://github.com/actions/checkout
on:
push:
branches-ignore:
- master
- release
- gha
- Qt4
- Qt4-dev
tags-ignore: '*'
paths-ignore: '/.github/workflows/release.yml'
pull_request:
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
jobs:
build:
name: ${{ matrix.config.name }}
runs-on: ${{ matrix.config.os }}
#continue-on-error: true
strategy:
fail-fast: false
matrix:
config:
- {
name: "qmake : WebKit + Qt5",
os: ubuntu-22.04,
packages: libqt5webkit5-dev,
xmake: 'qmake -r "USE_STATIC_CHMLIB=1"'
}
- {
name: "qmake : WebEngine + Qt5",
os: ubuntu-22.04,
packages: qtwebengine5-dev,
xmake: 'qmake -r "USE_STATIC_CHMLIB=1" "USE_WEBENGINE=1"'
}
- {
name: "CMake : WebKit + Qt5",
os: ubuntu-22.04,
packages: libqt5webkit5-dev,
xmake: "cmake -DUSE_STATIC_CHMLIB=ON ."
}
- {
name: "CMake : WebEngine + Qt5",
os: ubuntu-22.04,
packages: qtwebengine5-dev,
xmake: "cmake -DUSE_STATIC_CHMLIB=ON -DUSE_WEBENGINE=ON ."
}
steps:
- name: checkout
uses: actions/checkout@v5
with:
submodules: true
- name: Build & install libzip
shell: bash
run: |
cd ../
git clone https://github.com/nih-at/libzip.git
cd libzip
git checkout v1.11.4
mkdir build
cd build
cmake ..
cmake --build . --config Release
sudo cmake --install . --config Release
- name: Install packages
run: sudo apt-get update && sudo apt-get install ${{ matrix.config.packages }} -y
shell: bash
- name: Setup build
run: ${{ matrix.config.xmake }}
- name: Build
run: make