-
Notifications
You must be signed in to change notification settings - Fork 189
198 lines (192 loc) · 7.59 KB
/
main.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
on:
push:
pull_request:
merge_group:
name: CI
jobs:
test-software:
strategy:
matrix:
os-version:
- ubuntu-20.04
python-version:
- '3.9.5' # shipped with 20.04 LTS
- '3.9.x' # latest in the 3.9.x branch
- '3.10.x'
- '3.11.x'
- '3.12.x'
- 'pypy-3.9'
- 'pypy-3.10'
dep-versions:
- minimal
- latest
allow-failure:
- false
include:
- os-version: ubuntu-20.04
python-version: '3.13-dev'
dep-versions: minimal
allow-failure: true
- os-version: ubuntu-20.04
python-version: '3.13-dev'
dep-versions: latest
allow-failure: true
continue-on-error: ${{ matrix.allow-failure }}
runs-on: ${{ matrix.os-version }}
name: 'test-software (${{ matrix.python-version }}, deps: ${{ matrix.dep-versions }})'
env:
PDM_LOCKFILE: ${{ matrix.dep-versions == 'minimal' && 'pdm.min.lock' || 'pdm.lock' }}
steps:
- name: Check out source code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Cache Glasgow build products
uses: actions/cache@v4
with:
path: ~/.cache/GlasgowEmbedded
key: Glasgow-${{ matrix.python-version }}-${{ matrix.dep-versions }}-${{ hashFiles('./software/**') }}
restore-keys: |
Glasgow-${{ matrix.python-version }}-${{ matrix.dep-versions }}-
Glasgow-${{ matrix.python-version }}-
Glasgow-
- name: Set up PDM
uses: pdm-project/setup-pdm@v4
with:
python-version: ${{ matrix.python-version }}
- name: Generate lockfile
working-directory: ./software
run: pdm lock --group :all ${{ matrix.dep-versions == 'minimal' && '--strategy direct_minimal_versions' || '' }}
- name: Verify lockfile matches checked-in version
if: matrix.dep-versions == 'minimal'
working-directory: ./software
run: git diff --exit-code pdm.min.lock
- name: Install dependencies
working-directory: ./software
run: pdm sync
- name: Cache YoWASP build products
uses: actions/cache@v4
with:
path: ~/.cache/YoWASP
key: YoWASP-${{ runner.os }}-${{ matrix.python-version }}-${{ matrix.dep-versions }}-${{ hashFiles('./software/.venv/**/*.wasm') }}
restore-keys: |
YoWASP-${{ runner.os }}-${{ matrix.python-version }}-${{ matrix.dep-versions }}-
YoWASP-${{ runner.os }}-${{ matrix.python-version }}-
YoWASP-${{ runner.os }}-
- name: Run tests
working-directory: ./software
run: |
pdm run glasgow --help
pdm run glasgow build --rev C3 uart
pdm run test
build-firmware:
runs-on: ubuntu-latest
steps:
- name: Check out source code
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
- name: Build and deploy firmware
working-directory: ./software
run: |
./deploy-firmware.sh
- name: Check if the checked-in firmware is modified
id: is_modified
uses: tj-actions/changed-files@v44
with:
files: |
software/glasgow/device/firmware.ihex
- name: Verify firmware matches checked-in version
if: steps.is_modified.outputs.any_changed == 'true'
run: git diff --exit-code --text software/glasgow/device/firmware.ihex
build-manual:
runs-on: ubuntu-latest
defaults:
run:
working-directory: docs/manual
steps:
- name: Check out source code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up PDM
uses: pdm-project/setup-pdm@v4
- name: Install dependencies
run: pdm install
- name: Check for dead links
run: pdm run check
- name: Build documentation
env:
DOCS_IS_PRODUCTION: ${{ (github.repository == 'GlasgowEmbedded/glasgow' && github.event.ref == 'refs/heads/main') && 'yes' || 'no' }}
run: pdm run build
- name: Upload documentation archive
uses: actions/upload-artifact@v4
with:
name: docs
path: docs/manual/build
required: # group all required workflows into one to avoid reconfiguring this in Actions settings
needs:
- test-software
- build-firmware
- build-manual
if: ${{ always() && !contains(needs.*.result, 'cancelled') }}
runs-on: ubuntu-latest
steps:
- run: ${{ contains(needs.*.result, 'failure') && 'false' || 'true' }}
publish-manual:
needs: build-manual
if: ${{ (github.repository == 'GlasgowEmbedded/glasgow' && github.event.ref == 'refs/heads/main') || github.repository != 'GlasgowEmbedded/glasgow' }}
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Check out source code
uses: actions/checkout@v4
- if: ${{ github.repository == 'GlasgowEmbedded/glasgow' && github.event.ref == 'refs/heads/main' }}
name: Inject documentation from artifact under latest/
uses: actions/download-artifact@v4
with:
name: docs
path: pages/latest/
- if: ${{ github.repository == 'GlasgowEmbedded/glasgow' && github.event.ref == 'refs/heads/main' }}
name: Add CNAME and redirect from the root to latest/
run: |
echo >pages/CNAME 'glasgow-embedded.org'
cat >pages/index.html <<END
<!DOCTYPE html>
<html lang="en-US">
<meta charset="utf-8">
<title>Redirecting…</title>
<link rel="canonical" href="latest/intro.html">
<script>location="latest/intro.html"</script>
<meta http-equiv="refresh" content="0; url=latest/intro.html">
<meta content="Glasgow Interface Explorer" name="og:title" />
<meta content="website" name="og:type" />
<meta content="https://glasgow-embedded.org/" name="og:url" />
<meta content="A highly capable and extremely flexible open source multitool for digital electronics" name="og:description" />
<meta content="https://www.crowdsupply.com/img/f9a9/glasgow-revc2_jpg_open-graph.jpg" name="og:image" />
<meta content="A Glasgow Interface Explorer PCB, without a case" name="og:image:alt" />
<meta content="Glasgow Interface Explorer" name="twitter:title" />
<meta content="summary_large_image" name="twitter:card" />
<meta content="A highly capable and extremely flexible open source multitool for digital electronics" name="twitter:description" />
<meta content="https://www.crowdsupply.com/img/f9a9/glasgow-revc2_jpg_project-main.jpg" name="twitter:image" />
<meta content="A Glasgow Interface Explorer PCB, without a case" name="twitter:image:alt" />
<h1>Redirecting…</h1>
<a href="latest/intro.html">Click here if you are not redirected.</a>
</html>
END
- if: ${{ github.repository != 'GlasgowEmbedded/glasgow' }}
name: Inject documentation from artifact under {branch}/
uses: actions/download-artifact@v4
with:
name: docs
path: pages/${{ github.ref_name }}/
- name: Disable Jekyll
run: touch pages/.nojekyll
- name: Publish documentation for a branch
uses: JamesIves/github-pages-deploy-action@releases/v4
with:
folder: pages/
clean: ${{ github.repository == 'GlasgowEmbedded/glasgow' && github.event.ref == 'refs/heads/main' }}
single-commit: true