-
Notifications
You must be signed in to change notification settings - Fork 114
390 lines (318 loc) · 9.98 KB
/
Copy pathbuild.yml
File metadata and controls
390 lines (318 loc) · 9.98 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
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
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
name: Build
on:
push:
branches:
- main
tags:
- '[0-9]+.*'
pull_request:
jobs:
validate-release-versions:
name: Validate Release Versions
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Validate SDK package versions against tag
shell: bash
run: |
set -euo pipefail
if [[ "${GITHUB_REF}" != refs/tags/* ]]; then
echo "Not a tag build; skipping release version validation."
exit 0
fi
tag="${GITHUB_REF#refs/tags/}"
python3 - <<'PY' "$tag"
import json
import pathlib
import sys
import tomllib
tag = sys.argv[1]
root = pathlib.Path('.')
ts_version = json.loads((root / 'sdks/typescript/package.json').read_text())['version']
py_version = tomllib.loads((root / 'sdks/python/pyproject.toml').read_text())['project']['version']
mismatches = []
if ts_version != tag:
mismatches.append(f"TypeScript SDK version is {ts_version}, expected {tag}")
if py_version != tag:
mismatches.append(f"Python SDK version is {py_version}, expected {tag}")
if mismatches:
for mismatch in mismatches:
print(f"::error::{mismatch}")
raise SystemExit(1)
print(f"Validated release tag {tag} against TypeScript and Python SDK versions.")
PY
build-habitat:
name: Build Habitat (${{ matrix.os }}-${{ matrix.arch }})
runs-on: ${{ matrix.runner }}
strategy:
matrix:
include:
- os: linux
arch: x86_64
runner: ubuntu-latest
goos: linux
goarch: amd64
- os: linux
arch: arm64
runner: ubuntu-latest
goos: linux
goarch: arm64
- os: macos
arch: arm64
runner: macos-latest
goos: darwin
goarch: arm64
steps:
- name: Checkout code
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
cache-dependency-path: habitat/go.sum
- name: Set up Node.js
uses: actions/setup-node@v5
with:
node-version: '20'
- name: Build UI
working-directory: habitat
run: |
cd ui
npm install
npm run build
- name: Build Habitat binary
working-directory: habitat
env:
GOOS: ${{ matrix.goos }}
GOARCH: ${{ matrix.goarch }}
run: |
mkdir -p bin
go build -o bin/habitat ./cmd/habitat
- name: Create artifact name
id: artifact
run: |
echo "name=habitat-${{ matrix.os }}-${{ matrix.arch }}" >> $GITHUB_OUTPUT
- name: Upload artifact
uses: actions/upload-artifact@v5
with:
name: ${{ steps.artifact.outputs.name }}
path: habitat/bin/habitat
if-no-files-found: error
release:
name: Create Release
if: startsWith(github.ref, 'refs/tags/')
needs: [build-habitat, validate-release-versions]
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Download all artifacts
uses: actions/download-artifact@v5
with:
path: artifacts
- name: Build bundled absurdctl
run: ./scripts/build-absurdctl --standalone-only
- name: Prepare release assets
run: |
mkdir -p release
# Copy habitat binaries and rename them
cp artifacts/habitat-linux-x86_64/habitat release/habitat-linux-x86_64
cp artifacts/habitat-linux-arm64/habitat release/habitat-linux-arm64
cp artifacts/habitat-macos-arm64/habitat release/habitat-macos-arm64
# Make binaries executable
chmod +x release/habitat-*
# Copy bundled absurdctl
cp dist/absurdctl release/absurdctl
chmod +x release/absurdctl
# Copy SQL file
cp sql/absurd.sql release/absurd.sql
# Extract version from tag and find migration files
VERSION=${GITHUB_REF#refs/tags/}
echo "Release version: $VERSION"
# Copy migration files for this release
# This includes migrations like 0.0.3-0.0.4.sql and potentially 0.0.1-0.0.4.sql
if ls sql/migrations/*-${VERSION}.sql 1> /dev/null 2>&1; then
cp sql/migrations/*-${VERSION}.sql release/
echo "Copied migration files:"
ls -la sql/migrations/*-${VERSION}.sql
else
echo "No migration files found for version $VERSION"
fi
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
files: release/*
draft: false
prerelease: false
generate_release_notes: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
test-python-sdk-pypi-build:
name: Test Python SDK PyPI Build
runs-on: ubuntu-latest
needs: [validate-release-versions]
steps:
- name: Checkout code
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Build SDK
working-directory: sdks/python
run: uv build
- name: Check package metadata
working-directory: sdks/python
run: uvx twine check dist/*
- name: Upload build artifacts
uses: actions/upload-artifact@v5
with:
name: python-sdk-dist
path: sdks/python/dist/
if-no-files-found: error
test-npm-build:
name: Test npm Package Build
runs-on: ubuntu-latest
needs: [validate-release-versions]
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Set up Node.js
uses: actions/setup-node@v5
with:
node-version: '24'
- name: Install dependencies
working-directory: sdks/typescript
run: npm ci
- name: Build SDK
working-directory: sdks/typescript
run: npm run build
- name: Test package
working-directory: sdks/typescript
run: npm pack
publish-npm:
name: Publish to npm
if: startsWith(github.ref, 'refs/tags/')
needs: [test-npm-build]
runs-on: ubuntu-latest
environment: npm-publish
permissions:
contents: read
id-token: write
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Set up Node.js
uses: actions/setup-node@v5
with:
node-version: '24'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
working-directory: sdks/typescript
run: npm ci
- name: Build SDK
working-directory: sdks/typescript
run: npm run build
- name: Publish to npm
working-directory: sdks/typescript
run: npm publish --provenance --access public
test-absurdctl-pypi-build:
name: Test absurdctl PyPI Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Generate absurdctl PyPI staging tree
run: ./scripts/build-absurdctl --pypi-only
- name: Build absurdctl package
run: uv build .build/absurdctl-pypi
- name: Check package metadata
run: uvx twine check .build/absurdctl-pypi/dist/*
- name: Smoke test wheel with uvx
shell: bash
run: |
set -euo pipefail
wheel=$(echo .build/absurdctl-pypi/dist/absurdctl-*.whl)
uvx --from "$wheel" absurdctl --help
- name: Upload build artifacts
uses: actions/upload-artifact@v5
with:
name: absurdctl-dist
path: .build/absurdctl-pypi/dist/
if-no-files-found: error
publish-pypi:
name: Publish Python SDK to PyPI
if: startsWith(github.ref, 'refs/tags/')
needs: [test-python-sdk-pypi-build]
runs-on: ubuntu-latest
environment: pypi-publish
permissions:
contents: read
id-token: write
steps:
- name: Checkout code
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Build SDK
working-directory: sdks/python
run: uv build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: sdks/python/dist/
publish-absurdctl-pypi:
name: Publish absurdctl to PyPI
if: startsWith(github.ref, 'refs/tags/')
needs: [test-absurdctl-pypi-build]
runs-on: ubuntu-latest
environment: pypi-publish
permissions:
contents: read
id-token: write
steps:
- name: Checkout code
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Generate absurdctl PyPI staging tree
run: ./scripts/build-absurdctl --pypi-only
- name: Build absurdctl package
run: uv build .build/absurdctl-pypi
- name: Publish absurdctl to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: .build/absurdctl-pypi/dist/