forked from oracle/graalpython
-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (60 loc) · 2.24 KB
/
build-repository.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
name: build-repository
'on': workflow_dispatch
jobs:
build-repo:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download artifacts for linux-amd64
uses: dawidd6/action-download-artifact@268677152d06ba59fcec7a7f0b5d961b6ccd7e1e
continue-on-error: true
with:
workflow: build-linux-amd64-wheels.yml
workflow_conclusion: ''
if_no_artifact_found: warn
allow_forks: 'false'
- name: Download artifacts for linux-aarch64
uses: dawidd6/action-download-artifact@268677152d06ba59fcec7a7f0b5d961b6ccd7e1e
continue-on-error: true
with:
workflow: build-linux-aarch64-wheels.yml
workflow_conclusion: ''
if_no_artifact_found: warn
allow_forks: 'false'
- name: Download artifacts for macos-amd64
uses: dawidd6/action-download-artifact@268677152d06ba59fcec7a7f0b5d961b6ccd7e1e
continue-on-error: true
with:
workflow: build-macos-amd64-wheels.yml
workflow_conclusion: ''
if_no_artifact_found: warn
allow_forks: 'false'
- name: Download artifacts for macos-aarch64
uses: dawidd6/action-download-artifact@268677152d06ba59fcec7a7f0b5d961b6ccd7e1e
continue-on-error: true
with:
workflow: build-macos-aarch64-wheels.yml
workflow_conclusion: ''
if_no_artifact_found: warn
allow_forks: 'false'
- name: Download artifacts for windows-amd64
uses: dawidd6/action-download-artifact@268677152d06ba59fcec7a7f0b5d961b6ccd7e1e
continue-on-error: true
with:
workflow: build-windows-amd64-wheels.yml
workflow_conclusion: ''
if_no_artifact_found: warn
allow_forks: 'false'
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Create repository
run: python ${GITHUB_WORKSPACE}/scripts/wheelbuilder/generate_repository.py
- name: Store repository
uses: umutozd/upload-artifact@5c459179e7745e2c730c50b10a6459da0b6f25db
with:
name: repository
path: repository.zip
if-no-files-found: error