15
15
permissions :
16
16
contents : read
17
17
18
- env :
19
- ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION : true
20
-
21
18
jobs :
22
19
build_cmake :
23
20
24
21
strategy :
25
22
matrix :
26
- image : ["ubuntu:16.04", "ubuntu:18.04", "ubuntu: 24.04", "ubuntu:24.10"]
23
+ image : ["ubuntu:24.04", "ubuntu:24.10"]
27
24
include :
28
25
- build_gui : false
29
26
- image : " ubuntu:24.04"
43
40
image : ${{ matrix.image }}
44
41
45
42
steps :
46
- # we need to stay at v3 for now because Node 20 does not support the older distros
47
- # /__e/node20/bin/node: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.28' not found (required by /__e/node20/bin/node)
48
- - uses : actions/checkout@v3
49
- if : matrix.image == 'ubuntu:16.04' || matrix.image == 'ubuntu:18.04'
50
-
51
43
- uses : actions/checkout@v4
52
- if : matrix.image != 'ubuntu:16.04' && matrix.image != 'ubuntu:18.04'
53
44
54
45
- name : Install missing software on ubuntu
55
46
if : contains(matrix.image, 'ubuntu')
@@ -62,36 +53,15 @@ jobs:
62
53
run : |
63
54
apt-get install -y qt6-base-dev qt6-charts-dev qt6-tools-dev
64
55
65
- # needs to be called after the package installation since
66
- # - it doesn't call "apt-get update"
67
- #
68
- # needs to be to fixated on 1.2.11 so it works with older images - see https://github.com/hendrikmuhs/ccache-action/issues/178.
69
- # using the older version will cause a two minute hang in its post-run step.
70
- - name : ccache
71
- uses :
hendrikmuhs/[email protected]
72
- if : matrix.image == 'ubuntu:16.04' || matrix.image == 'ubuntu:18.04'
73
- with :
74
- key : ${{ github.workflow }}-${{ matrix.image }}
75
-
76
56
# needs to be called after the package installation since
77
57
# - it doesn't call "apt-get update"
78
58
- name : ccache
79
59
uses :
hendrikmuhs/[email protected]
80
- if : matrix.image != 'ubuntu:16.04' && matrix.image != 'ubuntu:18.04'
81
60
with :
82
61
key : ${{ github.workflow }}-${{ matrix.image }}
83
62
84
- # tests require CMake 3.9 - ccache available
85
- - name : CMake build (no tests)
86
- if : matrix.image == 'ubuntu:16.04'
87
- run : |
88
- mkdir cmake.output
89
- cd cmake.output
90
- cmake -G "Unix Makefiles" -DHAVE_RULES=On -DCMAKE_DISABLE_PRECOMPILE_HEADERS=On -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache ..
91
- cmake --build . -- -j$(nproc)
92
-
93
63
- name : CMake build
94
- if : ${{ !matrix.build_gui && matrix.image != 'ubuntu:16.04' }}
64
+ if : ${{ !matrix.build_gui }}
95
65
run : |
96
66
mkdir cmake.output
97
67
cd cmake.output
@@ -105,15 +75,14 @@ jobs:
105
75
cmake --build cmake.output -- -j$(nproc)
106
76
107
77
- name : Run CMake test
108
- if : matrix.image != 'ubuntu:16.04'
109
78
run : |
110
79
cmake --build cmake.output --target check -- -j$(nproc)
111
80
112
81
build_make :
113
82
114
83
strategy :
115
84
matrix :
116
- image : ["ubuntu:16.04", "ubuntu:18.04", "ubuntu: 24.04", "ubuntu:24.10"]
85
+ image : ["ubuntu:24.04", "ubuntu:24.10"]
117
86
fail-fast : false # Prefer quick result
118
87
119
88
runs-on : ubuntu-22.04
@@ -122,36 +91,18 @@ jobs:
122
91
image : ${{ matrix.image }}
123
92
124
93
steps :
125
- # we need to stay at v3 for now because Node 20 does not support the older distros
126
- # /__e/node20/bin/node: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.28' not found (required by /__e/node20/bin/node)
127
- - uses : actions/checkout@v3
128
- if : matrix.image == 'ubuntu:16.04' || matrix.image == 'ubuntu:18.04'
129
-
130
94
- uses : actions/checkout@v4
131
- if : matrix.image != 'ubuntu:16.04' && matrix.image != 'ubuntu:18.04'
132
95
133
96
- name : Install missing software on ubuntu
134
97
if : contains(matrix.image, 'ubuntu')
135
98
run : |
136
99
apt-get update
137
100
apt-get install -y g++ make python3 libxml2-utils libpcre3-dev
138
101
139
- # needs to be called after the package installation since
140
- # - it doesn't call "apt-get update"
141
- #
142
- # needs to be to fixated on 1.2.11 so it works with older images - see https://github.com/hendrikmuhs/ccache-action/issues/178.
143
- # using the older version will cause a two minute hang in its post-run step.
144
- - name : ccache
145
- uses :
hendrikmuhs/[email protected]
146
- if : matrix.image == 'ubuntu:16.04' || matrix.image == 'ubuntu:18.04'
147
- with :
148
- key : ${{ github.workflow }}-${{ matrix.image }}
149
-
150
102
# needs to be called after the package installation since
151
103
# - it doesn't call "apt-get update"
152
104
- name : ccache
153
105
uses :
hendrikmuhs/[email protected]
154
- if : matrix.image != 'ubuntu:16.04' && matrix.image != 'ubuntu:18.04'
155
106
with :
156
107
key : ${{ github.workflow }}-${{ matrix.image }}
157
108
@@ -183,10 +134,3 @@ jobs:
183
134
run : |
184
135
./cppcheck --addon=threadsafety addons/test/threadsafety
185
136
./cppcheck --addon=threadsafety --std=c++03 addons/test/threadsafety
186
-
187
- - name : Generate Qt help file on ubuntu 18.04
188
- if : false # matrix.os == 'ubuntu-18.04'
189
- run : |
190
- pushd gui/help
191
- qcollectiongenerator online-help.qhcp -o online-help.qhc
192
-
0 commit comments