-
Notifications
You must be signed in to change notification settings - Fork 3
733 lines (632 loc) · 24.7 KB
/
build.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
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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
name: Build
run-name: "Branch Build (${{ github.run_attempt }}.${{ github.run_number }}) - ${{ github.ref_name }}"
on:
workflow_dispatch:
inputs:
howso-engine-build:
description: |
(Optional) howso-engine build or version number. Defaults to pinned release.
Examples:
'6807310618',
'https://github.com/howsoai/howso-engine/actions/runs/6807310618',
'57.0.1'
required: false
type: string
amalgam-lang-py-build:
description: |
(Optional) amalgam-lang-py build or version number. Defaults to pinned release.
required: false
type: string
debug-mode:
description: Enables GDB and Amalgam Fast Memory Integrity checks for all Linux/x86 Pytest jobs.
type: boolean
required: false
default: false
workflow_call:
inputs:
build-type:
required: false
type: string
optional-release-tag:
required: false
type: string
debug-mode:
type: boolean
required: false
default: false
defaults:
run:
shell: bash
jobs:
metadata:
uses: howsoai/.github/.github/workflows/set-metadata.yml@main
secrets: inherit
with:
build-type: ${{ inputs.build-type }}
optional-release-tag: ${{ inputs.optional-release-tag }}
howso-engine-build: ${{ inputs.howso-engine-build }}
amalgam-lang-py-build: ${{ inputs.amalgam-lang-py-build }}
build:
needs: ["metadata"]
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Download howso-engine
env:
GH_TOKEN: ${{ github.token }}
run: |
run_id=$(printf "%s" '${{ needs.metadata.outputs.upstream-details }}' | jq -r '."howso-engine".run_id')
run_type=$(printf "%s" '${{ needs.metadata.outputs.upstream-details }}' | jq -r '."howso-engine".run_type')
gh $run_type download -D howso/howso-engine/tmp -R "howsoai/howso-engine" -p "howso-engine-*" "$run_id"
# Needed because release/non-release downloads are different structure
cd howso/howso-engine/tmp && if [ ! -f *.tar.gz ]; then mv */*.tar.gz ./; fi && tar -xvzf *.tar.gz
- name: Configure files
run: |
cd howso/howso-engine
mkdir -p migrations
mkdir -p trainee
mv tmp/howso.caml howso.caml
mv tmp/migrations/migrations.caml migrations/migrations.caml
mv tmp/version.json version.json
rm -rf tmp
- name: Set workflow run info
run: |
cd howso/howso-engine
run_id=$(printf "%s" '${{ needs.metadata.outputs.upstream-details }}' | jq -r '."howso-engine".run_id')
run_type=$(printf "%s" '${{ needs.metadata.outputs.upstream-details }}' | jq -r '."howso-engine".run_type')
build_title=$(printf "%s" '${{ needs.metadata.outputs.upstream-details }}' | jq -r '."howso-engine".build_title')
build_date=$(printf "%s" '${{ needs.metadata.outputs.upstream-details }}' | jq -r '."howso-engine".build_date')
head_sha=$(printf "%s" '${{ needs.metadata.outputs.upstream-details }}' | jq -r '."howso-engine".head_sha')
url=$(printf "%s" '${{ needs.metadata.outputs.upstream-details }}' | jq -r '."howso-engine".url')
# Set the display title and build date info in version.json
if [[ -n 'build_title' ]]; then
jq --arg build_title "$build_title" '. |= . + {"display_title": $build_title}' version.json > temp.json && mv temp.json version.json
jq --arg build_date "$build_date" '. |= . + {"build_date": $build_date}' version.json > temp.json && mv temp.json version.json
fi
jq --arg head_sha "$head_sha" '. |= . + {"sha": $head_sha}' version.json > temp.json && mv temp.json version.json
jq --arg url "$url" '. |= . + {"url": $url}' version.json > temp.json && mv temp.json version.json
cat version.json
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install pypa/build
run: >-
python3 -m
pip install
build
--user
- name: Build a binary wheel and a source tarball
run: >-
python3 -m
build
--sdist
--wheel
--outdir dist/
.
env:
SETUPTOOLS_SCM_PRETEND_VERSION: ${{ needs.metadata.outputs.version }}
- name: Upload Tarball Artifact
uses: actions/upload-artifact@v4
with:
name: howso_engine-${{ needs.metadata.outputs.version }}
path: dist/howso_engine-${{ needs.metadata.outputs.version }}.tar.gz
if-no-files-found: error
- name: Upload Wheel Artifact
uses: actions/upload-artifact@v4
with:
name: howso_engine-${{ needs.metadata.outputs.version }}-py3-none-any
path: dist/howso_engine-${{ needs.metadata.outputs.version }}-py3-none-any.whl
if-no-files-found: error
workflow-summary:
needs: ['metadata', 'build']
uses: "howsoai/.github/.github/workflows/workflow-summary.yml@main"
secrets: inherit
with:
upstream-details: ${{ needs.metadata.outputs.upstream-details }}
validate-amlg-versions: true
pytest-linux-3-9-st:
needs: ['metadata', 'build']
uses: howsoai/.github/.github/workflows/pytest.yml@main
secrets: inherit
with:
platform: 'ubuntu-latest'
platform-pretty: 'Linux'
amalgam-plat-arch: 'linux-amd64'
python-version: '3.9'
config-fp: './config/latest-st-traces-howso.yml'
config-pretty: 'ST'
workers: 'auto'
upstream-details: ${{ needs.metadata.outputs.upstream-details }}
debug: ${{ inputs.debug-mode }}
pytest-linux-3-12-mt:
needs: ['metadata', 'build']
uses: howsoai/.github/.github/workflows/pytest.yml@main
secrets: inherit
with:
platform: 'ubuntu-latest'
platform-pretty: 'Linux'
amalgam-plat-arch: 'linux-amd64'
python-version: '3.12'
config-fp: './config/latest-mt-traces-howso.yml'
config-pretty: 'MT'
upstream-details: ${{ needs.metadata.outputs.upstream-details }}
debug: ${{ inputs.debug-mode }}
pytest-windows-3-11-mt:
needs: ['metadata', 'build']
uses: howsoai/.github/.github/workflows/pytest.yml@main
secrets: inherit
with:
platform: 'windows-latest'
platform-pretty: 'Windows'
amalgam-plat-arch: 'windows-amd64'
python-version: '3.11'
config-fp: './config/latest-mt-traces-howso.yml'
config-pretty: 'MT'
upstream-details: ${{ needs.metadata.outputs.upstream-details }}
debug: ${{ inputs.debug-mode }}
pytest-macos-3-12-mt-arm64:
needs: ['metadata', 'build']
uses: howsoai/.github/.github/workflows/pytest.yml@main
secrets: inherit
with:
platform: 'macos-latest'
platform-pretty: 'MacOS'
amalgam-plat-arch: 'darwin-arm64'
python-version: '3.12'
config-fp: './config/latest-mt-traces-howso.yml'
config-pretty: 'MT'
upstream-details: ${{ needs.metadata.outputs.upstream-details }}
debug: ${{ inputs.debug-mode }}
pytest-macos-3-11-mt-amd64:
needs: ['metadata', 'build']
uses: howsoai/.github/.github/workflows/pytest.yml@main
secrets: inherit
with:
platform: 'macos-latest-large'
platform-pretty: 'MacOS'
amalgam-plat-arch: 'darwin-amd64'
python-version: '3.11'
config-fp: './config/latest-mt-noavx-traces-howso.yml'
config-pretty: 'MT'
upstream-details: ${{ needs.metadata.outputs.upstream-details }}
debug: ${{ inputs.debug-mode }}
install-verification-linux-amd64:
needs: ['metadata', 'build']
runs-on: ubuntu-latest
steps:
- name: Download Artifact
uses: actions/download-artifact@v4
with:
name: howso_engine-${{ needs.metadata.outputs.version }}-py3-none-any
- name: Download amalgam-lang-py
if: inputs.amalgam-lang-py-build != ''
env:
GH_TOKEN: ${{ github.token }}
run: |
run_id=$(printf "%s" '${{ needs.metadata.outputs.upstream-details }}' | jq -r '."amalgam-lang-py".run_id')
run_type=$(printf "%s" '${{ needs.metadata.outputs.upstream-details }}' | jq -r '."amalgam-lang-py".run_type')
gh $run_type download -D tmp -R "howsoai/amalgam-lang-py" -p "amalgam_lang-*-py3-none-any" "$run_id"
# Needed because release/non-release downloads are different structure
cd tmp && if [ ! -f *.whl ]; then mv */*.whl ./; fi
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Verify Howso install
run: |
echo "Installing Howso Engine..."
pip install howso_engine-*-py3-none-any.whl
if [ -d "tmp" ]; then
echo "Found custom amalgam-lang version; installing..."
pip uninstall amalgam-lang -y
pip install tmp/*.whl
fi
echo "Running Howso verification..."
verify_howso_install
- name: Display stacktrace files
if: always()
run: |
cat howso_stacktrace.txt || true
install-verification-linux-arm64:
if: inputs.build-type != 'PR'
needs: ['metadata', 'build']
runs-on: ubuntu-latest
steps:
- name: Download Artifact
uses: actions/download-artifact@v4
with:
name: howso_engine-${{ needs.metadata.outputs.version }}-py3-none-any
- name: Download amalgam-lang-py
if: inputs.amalgam-lang-py-build != ''
env:
GH_TOKEN: ${{ github.token }}
run: |
run_id=$(printf "%s" '${{ needs.metadata.outputs.upstream-details }}' | jq -r '."amalgam-lang-py".run_id')
run_type=$(printf "%s" '${{ needs.metadata.outputs.upstream-details }}' | jq -r '."amalgam-lang-py".run_type')
gh $run_type download -D tmp -R "howsoai/amalgam-lang-py" -p "amalgam_lang-*-py3-none-any" "$run_id"
# Needed because release/non-release downloads are different structure
cd tmp && if [ ! -f *.whl ]; then mv */*.whl ./; fi
- name: Verify Howso install
uses: pguyot/arm-runner-action@v2
with:
base_image: raspios_lite_arm64:latest
cpu: cortex-a8
image_additional_mb: 1000
commands: |
set -e
# Install python:
sudo apt-get install --no-install-recommends -y python3 python3-pip python-is-python3
python --version
# Overwrite pip.conf so pypi is used, not piwheels
sudo echo "" > /etc/pip.conf
echo "Installing Howso Engine..."
# This environment is considered "externally managed," so use --break-system-packages to bypass
# (safe in this use case)
pip install howso_engine-*-py3-none-any.whl --break-system-packages
if [ -d "tmp" ]; then
echo "Found custom amalgam-lang version; installing..."
pip uninstall amalgam-lang -y --break-system-packages
pip install tmp/*.whl --break-system-packages
fi
# amalgam binaries need this under QEMU
PATH=$PATH:/usr/aarch64-linux-gnu
echo "Running Howso verification..."
- name: Display stacktrace files
if: always()
run: |
cat howso_stacktrace.txt || true
install-verification-linux-arm64_8a:
if: inputs.build-type != 'PR'
needs: ['metadata', 'build']
runs-on: ubuntu-latest
steps:
- name: Download Artifact
uses: actions/download-artifact@v4
with:
name: howso_engine-${{ needs.metadata.outputs.version }}-py3-none-any
- name: Download amalgam-lang-py
if: inputs.amalgam-lang-py-build != ''
env:
GH_TOKEN: ${{ github.token }}
run: |
run_id=$(printf "%s" '${{ needs.metadata.outputs.upstream-details }}' | jq -r '."amalgam-lang-py".run_id')
run_type=$(printf "%s" '${{ needs.metadata.outputs.upstream-details }}' | jq -r '."amalgam-lang-py".run_type')
gh $run_type download -D tmp -R "howsoai/amalgam-lang-py" -p "amalgam_lang-*-py3-none-any" "$run_id"
# Needed because release/non-release downloads are different structure
cd tmp && if [ ! -f *.whl ]; then mv */*.whl ./; fi
- name: Verify Howso install
uses: pguyot/arm-runner-action@v2
with:
base_image: raspios_lite_arm64:latest
cpu: cortex-a7
image_additional_mb: 1000
commands: |
set -e
# Install python:
sudo apt-get install --no-install-recommends -y python3 python3-pip python-is-python3
python --version
# Overwrite pip.conf so pypi is used, not piwheels
sudo echo "" > /etc/pip.conf
echo "Installing Howso Engine..."
# This environment is considered "externally managed," so use --break-system-packages to bypass
# (safe in this use case)
pip install howso_engine-*-py3-none-any.whl --break-system-packages
if [ -d "tmp" ]; then
echo "Found custom amalgam-lang version; installing..."
pip uninstall amalgam-lang -y --break-system-packages
pip install tmp/*.whl --break-system-packages
fi
# Set local config to use single threaded because arm64_8a doesn't support multi-threading and set
# arm64_8a arch since that is not auto selected by the package currently:
echo "
howso:
client: howso.direct.HowsoDirectClient
client_extra_params:
amalgam:
arch: arm64_8a
library_postfix: -st
" > howso.yml
# amalgam binaries need this under QEMU
PATH=$PATH:/usr/aarch64-linux-gnu
echo "Running Howso verification..."
verify_howso_install
- name: Display stacktrace files
if: always()
run: |
cat howso_stacktrace.txt || true
install-verification-windows-bash-amd64:
if: inputs.build-type != 'PR'
needs: ['metadata', 'build']
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Download Artifact
uses: actions/download-artifact@v4
with:
name: howso_engine-${{ needs.metadata.outputs.version }}-py3-none-any
- name: Download amalgam-lang-py
if: inputs.amalgam-lang-py-build != ''
env:
GH_TOKEN: ${{ github.token }}
run: |
run_id=$(printf "%s" '${{ needs.metadata.outputs.upstream-details }}' | jq -r '."amalgam-lang-py".run_id')
run_type=$(printf "%s" '${{ needs.metadata.outputs.upstream-details }}' | jq -r '."amalgam-lang-py".run_type')
gh $run_type download -D tmp -R "howsoai/amalgam-lang-py" -p "amalgam_lang-*-py3-none-any" "$run_id"
# Needed because release/non-release downloads are different structure
cd tmp && if [ ! -f *.whl ]; then mv */*.whl ./; fi
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Download tz data
shell: pwsh
run: |
./config/powershell/Download-Tzdata.ps1
- name: Remove Pip cache
shell: bash
run: rm -rf ~/AppData/Local/pip/cache
- name: Verify Howso install
run: |
echo "Installing Howso Engine..."
pip install howso_engine-*-py3-none-any.whl
if [ -d "tmp" ]; then
echo "Found custom amalgam-lang version; installing..."
pip uninstall amalgam-lang -y
pip install tmp/*.whl
fi
echo "Running Howso verification..."
PYTHONUTF8=1 verify_howso_install
- name: Display stacktrace files
if: always()
run: |
cat howso_stacktrace.txt || true
install-verification-windows-cmd-amd64:
needs: ['metadata', 'build']
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Download Artifact
uses: actions/download-artifact@v4
with:
name: howso_engine-${{ needs.metadata.outputs.version }}-py3-none-any
- name: Download amalgam-lang-py
if: inputs.amalgam-lang-py-build != ''
env:
GH_TOKEN: ${{ github.token }}
run: |
run_id=$(printf "%s" '${{ needs.metadata.outputs.upstream-details }}' | jq -r '."amalgam-lang-py".run_id')
run_type=$(printf "%s" '${{ needs.metadata.outputs.upstream-details }}' | jq -r '."amalgam-lang-py".run_type')
gh $run_type download -D tmp -R "howsoai/amalgam-lang-py" -p "amalgam_lang-*-py3-none-any" "$run_id"
# Needed because release/non-release downloads are different structure
cd tmp && if [ ! -f *.whl ]; then mv */*.whl ./; fi
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Download tz data
shell: pwsh
run: |
./config/powershell/Download-Tzdata.ps1
- name: Remove Pip cache
shell: bash
run: rm -rf ~/AppData/Local/pip/cache
- name: Verify Howso install
shell: cmd
run: |
@echo off
setlocal enabledelayedexpansion
echo Installing Howso Engine...
REM Globs don't work in cmd with pip
pip install howso_engine-${{ needs.metadata.outputs.version }}-py3-none-any.whl
if exist "tmp" (
echo Found custom amalgam-lang version, installing...
pip uninstall amalgam-lang -y
for %%i in (tmp\amalgam*.whl) do (set whlFile=%%~nxi)
pip install tmp/!whlFile!
)
echo Running Howso verification...
set PYTHONUTF8=1
verify_howso_install
- name: Display stacktrace files
if: always()
run: |
cat howso_stacktrace.txt || true
install-verification-windows-pwsh-amd64:
if: inputs.build-type != 'PR'
needs: ['metadata', 'build']
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Download Artifact
uses: actions/download-artifact@v4
with:
name: howso_engine-${{ needs.metadata.outputs.version }}-py3-none-any
- name: Download amalgam-lang-py
if: inputs.amalgam-lang-py-build != ''
env:
GH_TOKEN: ${{ github.token }}
run: |
run_id=$(printf "%s" '${{ needs.metadata.outputs.upstream-details }}' | jq -r '."amalgam-lang-py".run_id')
run_type=$(printf "%s" '${{ needs.metadata.outputs.upstream-details }}' | jq -r '."amalgam-lang-py".run_type')
gh $run_type download -D tmp -R "howsoai/amalgam-lang-py" -p "amalgam_lang-*-py3-none-any" "$run_id"
# Needed because release/non-release downloads are different structure
cd tmp && if [ ! -f *.whl ]; then mv */*.whl ./; fi
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Download tz data
shell: pwsh
run: |
./config/powershell/Download-Tzdata.ps1
- name: Remove Pip cache
shell: bash
run: rm -rf ~/AppData/Local/pip/cache
- name: Verify Howso install
shell: pwsh
run: |
Write-Host "Installing Howso Engine..."
# Globs don't work in pwsh with pip
pip install howso_engine-${{ needs.metadata.outputs.version }}-py3-none-any.whl
if (Test-Path -Path "tmp" -PathType Container) {
Write-Host "Found custom amalgam-lang version; installing.."
pip uninstall amalgam-lang -y
$whlFile = Get-ChildItem -Path ".\tmp\" -Filter *.whl
pip install $whlFile
}
Write-Host "Running Howso verification..."
$env:PYTHONUTF8=1
verify_howso_install
- name: Display stacktrace files
if: always()
run: |
cat howso_stacktrace.txt || true
install-verification-macos-amd64:
needs: ['metadata', 'build']
runs-on: macos-latest-large
steps:
- name: Download Artifact
uses: actions/download-artifact@v4
with:
name: howso_engine-${{ needs.metadata.outputs.version }}-py3-none-any
- name: Download amalgam-lang-py
if: inputs.amalgam-lang-py-build != ''
env:
GH_TOKEN: ${{ github.token }}
run: |
run_id=$(printf "%s" '${{ needs.metadata.outputs.upstream-details }}' | jq -r '."amalgam-lang-py".run_id')
run_type=$(printf "%s" '${{ needs.metadata.outputs.upstream-details }}' | jq -r '."amalgam-lang-py".run_type')
gh $run_type download -D tmp -R "howsoai/amalgam-lang-py" -p "amalgam_lang-*-py3-none-any" "$run_id"
# Needed because release/non-release downloads are different structure
cd tmp && if [ ! -f *.whl ]; then mv */*.whl ./; fi
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Verify Howso install
run: |
echo "Installing Howso Engine..."
pip install howso_engine-*-py3-none-any.whl
if [ -d "tmp" ]; then
echo "Found custom amalgam-lang version; installing..."
pip uninstall amalgam-lang -y
pip install tmp/*.whl
fi
echo "Running Howso verification..."
verify_howso_install
- name: Display stacktrace files
if: always()
run: |
cat howso_stacktrace.txt || true
install-verification-macos-arm64:
needs: ['metadata', 'build']
runs-on: macos-latest-xlarge
steps:
- name: Download Artifact
uses: actions/download-artifact@v4
with:
name: howso_engine-${{ needs.metadata.outputs.version }}-py3-none-any
- name: Download amalgam-lang-py
if: inputs.amalgam-lang-py-build != ''
env:
GH_TOKEN: ${{ github.token }}
run: |
run_id=$(printf "%s" '${{ needs.metadata.outputs.upstream-details }}' | jq -r '."amalgam-lang-py".run_id')
run_type=$(printf "%s" '${{ needs.metadata.outputs.upstream-details }}' | jq -r '."amalgam-lang-py".run_type')
gh $run_type download -D tmp -R "howsoai/amalgam-lang-py" -p "amalgam_lang-*-py3-none-any" "$run_id"
# Needed because release/non-release downloads are different structure
cd tmp && if [ ! -f *.whl ]; then mv */*.whl ./; fi
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Verify Howso install
run: |
echo "Installing Howso Engine..."
pip install howso_engine-*-py3-none-any.whl
if [ -d "tmp" ]; then
echo "Found custom amalgam-lang version; installing..."
pip uninstall amalgam-lang -y
pip install tmp/*.whl
fi
echo "Running Howso verification..."
verify_howso_install
- name: Display stacktrace files
if: always()
run: |
cat howso_stacktrace.txt || true
generate-changelog:
if: inputs.build-type == 'release'
secrets: inherit
needs:
- metadata
uses: "howsoai/.github/.github/workflows/release-notes.yml@main"
release:
if: inputs.build-type == 'release'
environment:
name: pypi
permissions:
contents: write
id-token: write
needs:
- metadata
- generate-changelog
- workflow-summary
- pytest-linux-3-9-st
- pytest-linux-3-12-mt
- pytest-windows-3-11-mt
- pytest-macos-3-12-mt-arm64
- pytest-macos-3-11-mt-amd64
- install-verification-linux-amd64
- install-verification-linux-arm64
- install-verification-linux-arm64_8a
- install-verification-windows-bash-amd64
- install-verification-windows-cmd-amd64
- install-verification-windows-pwsh-amd64
- install-verification-macos-amd64
- install-verification-macos-arm64
runs-on: ubuntu-latest
steps:
- name: Download Artifacts
uses: actions/download-artifact@v4
with:
path: ./tmp
- name: Create Release
uses: ncipollo/release-action@v1
with:
tag: ${{ needs.metadata.outputs.version }}
commit: ${{ github.sha }}
name: ${{ github.event.repository.name }} ${{ needs.metadata.outputs.version }}
artifactErrorsFailBuild: true
body: ${{ needs.generate-changelog.outputs.changelog }}
makeLatest: legacy
artifacts: "./tmp/howso_engine-*/howso_engine-*.tar.gz,./tmp/howso_engine-*/howso_engine-*.whl"
artifactContentType: application/gzip
- name: Clean up dir
run: |
mkdir -p dist
find ./tmp -type f -name '*.whl' -exec cp -t ./dist {} +
find ./tmp -type f -name '*.tar.gz' -exec cp -t ./dist {} +
ls ./dist
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
# Experimental feature not yet compatible with our workflow
attestations: False
init-devcontainers-release:
if: inputs.build-type == 'release'
needs: ["metadata", "build", "release"]
uses: "howsoai/.github/.github/workflows/run-external.yml@main"
secrets: inherit
with:
repo: howso-devcontainers
check-cache: false
workflow-name: build.yml
payload: '{"howso-engine-version": "${{ needs.metadata.outputs.version }}", "build-type": "release"}'