-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
271 lines (238 loc) · 8.27 KB
/
buil_parallel.yml
File metadata and controls
271 lines (238 loc) · 8.27 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
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
---
name: Build and Push Releases
on:
push:
branches:
- main, workflow
tags:
- "*"
workflow_dispatch:
jobs:
compile_sketch:
name: Build ${{ matrix.board.env }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
board:
- { env: "Marauder-Mini", family: "ESP32",}
- { env: "lilygo-t-display-ttgo", family: "ESP32",}
steps:
- uses: actions/checkout@v4
- id: build
name: setup Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install build deps (multilib)
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends gcc-multilib libc6-dev-i386
- name: Cache pip
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }}
restore-keys: |
${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }}
${{ runner.os }}-pip-
- name: Cache PlatformIO Framework
uses: actions/cache@v4
with:
path: |
~/.platformio
key: ${{ runner.os }}-platformio-${{ hashFiles('platformio.ini') }}
restore-keys: |
${{ runner.os }}-platformio-${{ hashFiles('platformio.ini') }}
${{ runner.os }}-platformio-
- name: PIO libraries cache
uses: actions/cache@v4
with:
path: |
.pio/libdeps
key: ${{ runner.os }}-pio-${{ matrix.board.env }}-${{ hashFiles('platformio.ini') }}
restore-keys: |
${{ runner.os }}-pio-${{ matrix.board.env }}-${{ hashFiles('platformio.ini') }}
${{ runner.os }}-pio-${{ matrix.board.env }}-
- name: Install dependencies
run: |
pip install requests esptool intelhex
pip install platformio
- name: Prepare PlatformIO file
run: |
if [[ "${{ github.ref_type }}" == "tag" ]]; then
version=${{ github.ref_name }}
else
version="${GITHUB_SHA::7}"
fi
sed -i "s/-DBRUCE_VERSION=/-DBRUCE_VERSION='\"$version\"' ; /g" ./platformio.ini
sed -i "s/-DGIT_COMMIT_HASH='\"Homebrew\"'/\!echo '-DGIT_COMMIT_HASH=\\\\\\\\\"'\$\(git describe --always --dirty)'\\\\\\\\\"'/g" ./platformio.ini
cat ./platformio.ini
- name: Run Compile
run: |
set -o pipefail
platformio run -e ${{ matrix.board.env }} | tee build-${{ matrix.board.env }}.log
- name: Build summary
run: |
if [[ -f build-${{ matrix.board.env }}.log ]]; then
echo "Last 75 lines of build-${{ matrix.board.env }}.log:"
tail -n 75 build-${{ matrix.board.env }}.log
else
echo "Build log not found; nothing to show."
fi
- name: Upload ${{ matrix.board.env }}
uses: actions/upload-artifact@v4
with:
name: Bruce-${{ matrix.board.env }}
path: Bruce-*.*
retention-days: 1
if-no-files-found: error
post_compile_steps:
name: Update Placeholders
runs-on: ubuntu-latest
environment: github_release
needs: compile_sketch
if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch') || github.ref_type == 'tag'
steps:
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
pattern: '*'
merge-multiple: true
path: artifacts
- name: Ensure releases exist and get IDs
id: get_release
uses: actions/github-script@v7
with:
script: |
const ensureByTag = async (tag, prerelease=true) => {
try {
const { data } = await github.rest.repos.getReleaseByTag({
owner: context.repo.owner,
repo: context.repo.repo,
tag
});
return data.id;
} catch (e) {
if (e.status !== 404) throw e;
const { data } = await github.rest.repos.createRelease({
owner: context.repo.owner,
repo: context.repo.repo,
tag_name: tag,
name: tag,
prerelease
});
return data.id;
}
};
const betaId = await ensureByTag('betaRelease');
const lastId = await ensureByTag('lastRelease');
core.setOutput('beta', String(betaId));
core.setOutput('last', String(lastId));
- name: Get current sha
id: get_sha
run: |
echo "GITHUB_SHA_SHORT=${GITHUB_SHA::7}" >> $GITHUB_OUTPUT
- name: Delete old betaRelease assets
uses: actions/github-script@v6
with:
script: |
const release_id = ${{ steps.get_release.outputs.beta }};
const assets = await github.rest.repos.listReleaseAssets({
owner: context.repo.owner,
repo: context.repo.repo,
release_id: release_id
});
for (const asset of assets.data) {
await github.rest.repos.deleteReleaseAsset({
owner: context.repo.owner,
repo: context.repo.repo,
asset_id: asset.id
});
}
- name: Upload new betaRelease asset
uses: softprops/action-gh-release@v2
with:
name: betaRelease commit (${{ steps.get_sha.outputs.GITHUB_SHA_SHORT }})
tag_name: betaRelease
prerelease: true
files: artifacts/**
fail_on_unmatched_files: false
make_latest: false
generate_release_notes: false
- name: Delete old lastRelease assets
uses: actions/github-script@v6
if: github.ref_type == 'tag'
with:
script: |
const release_id = ${{ steps.get_release.outputs.last }};
const assets = await github.rest.repos.listReleaseAssets({
owner: context.repo.owner,
repo: context.repo.repo,
release_id: release_id
});
for (const asset of assets.data) {
await github.rest.repos.deleteReleaseAsset({
owner: context.repo.owner,
repo: context.repo.repo,
asset_id: asset.id
});
}
- name: Upload new lastRelease asset
uses: softprops/action-gh-release@v2
if: github.ref_type == 'tag'
with:
name: lastRelease commit (${{ steps.get_sha.outputs.GITHUB_SHA_SHORT }})
tag_name: lastRelease
prerelease: true
files: artifacts/**
fail_on_unmatched_files: false
make_latest: false
generate_release_notes: false
- name: Checkout main to trigger WebPage deploy
if: ${{ success() }}
uses: actions/checkout@v4
with:
ref: main
fetch-depth: 1
- name: Trigger WebPage deploy (workflow_dispatch)
if: ${{ success() }}
env:
GH_TOKEN: ${{ github.token }}
run: |
gh workflow list
gh workflow run .github/workflows/deploy.yml --ref WebPage
create_release:
runs-on: ubuntu-latest
environment: github_release
needs: [compile_sketch]
if: github.ref_type == 'tag'
steps:
- id: bruce_version
name: Get Version
run: |
set -x
if [[ "${{ github.ref_type }}" == "tag" ]]; then
version=${{ github.ref_name }}
else
version="${GITHUB_SHA::7}"
fi
echo "version=${version}" > $GITHUB_OUTPUT
- uses: actions/download-artifact@v4
with:
merge-multiple: true
- name: List all files
if: always()
run: |
set -x
pwd
ls -all
tree
- name: Create Release ${{ steps.bruce_version.outputs.version }}
uses: softprops/action-gh-release@v1
with:
name: Bruce Release ${{ steps.bruce_version.outputs.version }}
tag_name: ${{ steps.bruce_version.outputs.version }}
generate_release_notes: true
files: |
Bruce-*.bin