-
Notifications
You must be signed in to change notification settings - Fork 10
178 lines (157 loc) · 5 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
name: Build
on: [pull_request, push]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
build-native:
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
include:
- name: Windows x86_64
os: windows-2022
cmake-args:
- name: Linux x86_64
os: ubuntu-24.04
cmake-args:
- name: macOS universal
os: macOS-14
cmake-args: -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64"
name: ${{ matrix.name }} - native
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- run: cmake -B build -S . -DBUILD_EXAMPLES=ON ${{ matrix.cmake-args }}
- run: cmake --build build --config RelWithDebInfo --parallel $(nproc)
- run: ctest --test-dir build -C RelWithDebInfo --output-on-failure
- run: cmake --install build --config RelWithDebInfo --prefix pkg
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.name }} - native
path: pkg
build-python-wheel:
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
include:
- name: Windows x86_64
os: windows-2022
version: "3.9"
cmake-env:
- name: Windows x86_64
os: windows-2022
version: "3.10"
cmake-env:
- name: Windows x86_64
os: windows-2022
version: "3.11"
cmake-env:
- name: Windows x86_64
os: windows-2022
version: "3.12"
cmake-env:
- name: Linux x86_64
os: ubuntu-24.04
version: "3.9"
cmake-env:
- name: Linux x86_64
os: ubuntu-24.04
version: "3.10"
cmake-env:
- name: Linux x86_64
os: ubuntu-24.04
version: "3.11"
cmake-env:
- name: Linux x86_64
os: ubuntu-24.04
version: "3.12"
cmake-env:
- name: macOS universal
os: macOS-14
version: "3.10"
cmake-env: CMAKE_OSX_ARCHITECTURES="x86_64;arm64"
- name: macOS universal
os: macOS-14
version: "3.11"
cmake-env: CMAKE_OSX_ARCHITECTURES="x86_64;arm64"
- name: macOS universal
os: macOS-14
version: "3.12"
cmake-env: CMAKE_OSX_ARCHITECTURES="x86_64;arm64"
name: ${{ matrix.name }} - Python ${{ matrix.version }} wheel
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.version }}
- run: python3 ./tools/update_version.py
- run: pip3 install build tox
- run: ${{ matrix.cmake-env }} python3 -m build --wheel
- run: python3 ../.github/workflows/repair_wheel.py sleipnirgroup_jormungandr-*.whl
if: startsWith(matrix.os, 'ubuntu') || startsWith(matrix.os, 'macOS')
working-directory: dist
- run: python3 -m tox -e ${{ matrix.version }}
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.name }} - Python ${{ matrix.version }} wheel
path: dist
build-python-sdist:
timeout-minutes: 10
name: Python sdist
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: 3.12
- run: python3 ./tools/update_version.py
- run: pip3 install build tox
- run: python3 -m build --sdist
- uses: actions/upload-artifact@v4
with:
name: Python sdist
path: dist
pypi-publish:
name: Upload release to PyPI
runs-on: ubuntu-24.04
needs: [build-python-wheel, build-python-sdist]
if: github.repository_owner == 'SleipnirGroup' && github.ref == 'refs/heads/main'
environment:
name: pypi
url: https://pypi.org/p/sleipnirgroup-jormungandr
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v4
with:
path: dist
pattern: '* - Python * wheel'
merge-multiple: true
- uses: actions/download-artifact@v4
with:
path: dist
pattern: 'Python sdist'
merge-multiple: true
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
build-wasm:
name: Wasm
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: numworks/setup-emscripten@latest
- run: emcmake cmake -B build -S . -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=OFF -DBUILD_TESTING=OFF
- run: cmake --build build --config Release --parallel $(nproc)
- run: cmake --install build --config Release --prefix pkg
- uses: actions/upload-artifact@v4
with:
name: Wasm
path: pkg