-
Notifications
You must be signed in to change notification settings - Fork 24
363 lines (300 loc) · 10.7 KB
/
build_docs.yml
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
---
# Copyright 2022 Sam Darwin
#
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at http://boost.org/LICENSE_1_0.txt)
name: build_docs
on:
pull_request:
paths:
- 'build_docs/**'
- '.github/workflows/build_docs.yml'
push:
paths:
- 'build_docs/**'
- '.github/workflows/build_docs.yml'
branches:
- master
- develop
- feature/**
jobs:
linux:
defaults:
run:
shell: bash
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
container: ubuntu:24.04
packages: python-is-python3
skiplist: auto_index
- os: ubuntu-latest
container: ubuntu:22.04
packages: python2
skiplist: auto_index
- os: ubuntu-latest
container: ubuntu:20.04
packages: python
skiplist: auto_index
- os: ubuntu-latest
container: ubuntu:24.04
packages: python-is-python3
# skiplist:
flags: "--boostrelease"
- os: ubuntu-latest
container: ubuntu:22.04
packages: python2
# skiplist:
flags: "--boostrelease"
- os: ubuntu-latest
container: ubuntu:20.04
packages: python
# skiplist:
flags: "--boostrelease"
# Jinja 3.1.0 and later have dropped support for Python 3.6 and therefore won't run on Ubuntu 18.04. Removing tests for Ubuntu 18.
timeout-minutes: 720
runs-on: ${{matrix.os}}
container: ${{matrix.container}}
steps:
- uses: actions/checkout@v3
- name: docs
run: |
set -x
set -e
touch /tmp/failed.txt
touch /tmp/succeeded.txt
apt-get update
DEBIAN_FRONTEND="noninteractive" apt-get install -y tzdata
apt-get install -y git sudo
apt-get install -y ${{ matrix.packages }}
if [ ! -f /usr/bin/python ]; then
ln -s /usr/bin/python2 /usr/bin/python
fi
cp build_docs/linuxdocs.sh /usr/local/bin/
mkdir -p /opt/github/boostorg
cd /opt/github/boostorg
git clone -b "develop" --depth 1 "https://github.com/boostorg/boost.git"
cd boost
git submodule update --init
# Run at least one full build that installs everything
cd libs/accumulators
linuxdocs.sh ${{ matrix.flags }}
cd ../..
textpart1='#!/bin/bash
reponame=$1
echo "reponame is $reponame"
skiplist="'
textpart2="${{ matrix.skiplist }}"
textpart3='"
# jump ahead to continue testing
# if [[ "$reponame" =~ ^[a-fh-z] ]]; then
if [[ "$reponame" =~ ^[9] ]]; then
echo "skipping ahead X letters"
elif [[ "$skiplist" =~ $reponame ]]; then
echo "repo in skiplist"
else
linuxdocs.sh --quick '
textpart4=${{ matrix.flags }}
textpart5='
if [[ $? != 0 ]]; then
echo "..failed. DOCS BUILD FAILED. LIBRARY $reponame"
echo "$reponame" >> /tmp/failed.txt
else
echo "LIBRARY $reponame SUCCEEDED."
echo "$reponame" >> /tmp/succeeded.txt
fi
fi
'
textsource="${textpart1}${textpart2}${textpart3}${textpart4}${textpart5}"
echo "$textsource" > /usr/local/bin/runlinuxdocsquick
chmod 755 /usr/local/bin/runlinuxdocsquick
echo "checking runlinuxdocsquick"
cat /usr/local/bin/runlinuxdocsquick
git submodule foreach 'runlinuxdocsquick $name'
failed=$(wc -l /tmp/failed.txt | cut -d" " -f1)
succeeded=$(wc -l /tmp/succeeded.txt | cut -d" " -f1)
echo "$failed failed, $succeeded succeeded."
echo ""
cat /tmp/failed.txt
if [ "$failed" != "0" ]; then
exit 1
fi
macos:
defaults:
run:
shell: bash
strategy:
fail-fast: false
matrix:
include:
# - os: macos-11
# skiplist: auto_index contract
# - os: macos-11
# skiplist: contract
# flags: "--boostrelease"
- os: macos-12
skiplist: auto_index contract
- os: macos-12
skiplist: contract
flags: "--boostrelease"
- os: macos-14
skiplist: auto_index contract
- os: macos-14
skiplist: contract
flags: "--boostrelease"
timeout-minutes: 720
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
- name: docs
run: |
set -x
set -e
touch /tmp/failed.txt
touch /tmp/succeeded.txt
cp build_docs/macosdocs.sh /usr/local/bin/
mkdir -p github/boostorg
cd github/boostorg
git clone -b "develop" --depth 1 "https://github.com/boostorg/boost.git"
cd boost
git submodule update --init
# Run at least one full build that installs everything
cd libs/system
macosdocs.sh
cd ../..
textpart1='#!/bin/bash
reponame=$1
echo "reponame is $reponame"
skiplist="'
textpart2="${{ matrix.skiplist }}"
textpart3='"
# jump ahead to continue testing
# if [[ "$reponame" =~ ^[a-s] ]]; then
if [[ "$reponame" =~ ^[9] ]]; then
echo "skipping ahead X letters"
elif [[ "$skiplist" =~ $reponame ]]; then
echo "repo in skiplist"
else
macosdocs.sh --quick '
textpart4=${{ matrix.flags }}
textpart5='
if [[ $? != 0 ]]; then
echo "..failed. DOCS BUILD FAILED. LIBRARY $reponame"
# exit 1
echo "$reponame" >> /tmp/failed.txt
else
echo "LIBARY $reponame SUCCEEDED."
echo "$reponame" >> /tmp/succeeded.txt
fi
fi
'
textsource="${textpart1}${textpart2}${textpart3}${textpart4}${textpart5}"
echo "$textsource" > /usr/local/bin/runmacosdocsquick
chmod 755 /usr/local/bin/runmacosdocsquick
echo "check runmacosdocsquick"
cat /usr/local/bin/runmacosdocsquick
git submodule foreach 'runmacosdocsquick $name'
failed=$(wc -l /tmp/failed.txt | tr -s ' ' | cut -d' ' -f2)
succeeded=$(wc -l /tmp/succeeded.txt | tr -s ' ' | cut -d' ' -f2)
echo "$failed failed, $succeeded succeeded."
echo ""
cat /tmp/failed.txt
if [ "$failed" != "0" ]; then
exit 1
fi
windows:
strategy:
fail-fast: false
matrix:
include:
- os: windows-2019
# skiplist: auto_index contract hana leaf log parameter parameter_python python qvm
- os: windows-2022
# skiplist: auto_index contract hana log parameter parameter_python python
- os: windows-2019
flags: "-boostrelease"
# skiplist: contract hana log parameter parameter_python python
- os: windows-2022
flags: "-boostrelease"
# skiplist: contract hana log parameter parameter_python python
timeout-minutes: 720
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
- name: docs
shell: powershell
run: |
echo $null >> C:\succeeded.txt
echo $null >> C:\failed.txt
function Runwindowsdocs {
pwd
windowsdocs.ps1
if ( ! $LASTEXITCODE -eq 0) {
echo '..failed. DOCS BUILD FAILED. LIBRARY system'
echo 'doc build failed in github actions. exiting.'
# exit 1
}
}
# 'git submodule foreach' isn't seeing declared functions.
# As a workaround, place the function in a module. Load the module at runtime.
New-Item -ItemType Directory -Force -Path C:\scripts
$textpart1=@'
param( [String]$reponame)
pwd
echo "reponame is $reponame"
# need to research all skipped libraries.
$skiplist="
'@
$textpart2="${{ matrix.skiplist }}"
$textpart3=@'
"
# if ( $reponame -match '^[a-o]' ) {
if ( $reponame -match '^[9]' ) {
echo "skipping ahead X letters"
}
elseif ($skiplist -like "*$reponame*") {
echo "repo in skiplist"
}
else {
windowsdocs.ps1 -quick
'@
$textpart4="${{ matrix.flags }}"
$textpart5=@'
if ( ! $LASTEXITCODE -eq 0) {
echo "..failed. DOCS BUILD FAILED. LIBRARY $reponame"
echo "doc build failed in github actions. exiting."
Add-Content C:\failed.txt "`n$reponame"
# exit 1
}
else {
echo "LIBRARY $reponame SUCCEEDED."
Add-Content C:\succeeded.txt "`n$reponame"
}
}
'@
$textsource="${textpart1}${textpart2}${textpart3}${textpart4}${textpart5}"
$textsource | Out-File c:\scripts\cifunctions.ps1
echo "Checking cifunctions.ps1"
cat c:\scripts\cifunctions.ps1
cp build_docs/windowsdocs.ps1 C:\windows\system32
echo "job"
mkdir C:\boostorg
cd C:\boostorg
git clone -b develop --depth 1 https://github.com/boostorg/boost.git boost
cd boost
git submodule update --init
# Run at least one full build that installs everything
cd libs/system
Runwindowsdocs
cd ../..
# For the rest --quick
git submodule foreach 'powershell -command C:/scripts/cifunctions.ps1 $name'
$succeeded = (Get-Content C:\succeeded.txt | Measure-Object -Line).Lines
$failed = (Get-Content C:\failed.txt | Measure-Object -Line).Lines
echo "$failed failed, $succeeded succeeded."
Get-Content C:\failed.txt
if ( $failed -ne '0' ) {
exit 1
}