-
Notifications
You must be signed in to change notification settings - Fork 39
208 lines (205 loc) · 7.69 KB
/
windows.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
---
name: Windows build/release workflow
on:
push:
pull_request:
release:
types: [published]
branches: [master]
env:
BOOST_ROOT: boost
MSVC_TOOLSET_VERSION: 14.2
jobs:
build-v8:
# If Google V8 is in the workflow cache, don't build it.
# Cloning the repository is still necessary in any case
# to calculate the hash for the cache key
name: Build Google V8
runs-on: ${{ matrix.os }}
strategy:
matrix:
# Needed for MSVC toolset 14.2
os: [windows-latest]
outputs:
v8-hash: ${{ steps.build-v8.outputs.v8-hash }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Clone Google V8
run: |
python -m pip install wheel
echo "::group::Clone v8"
python setup.py checkout_v8
echo "::endgroup::"
- name: Restore Google V8 from cache
id: restore-v8
uses: actions/cache/restore@main
with:
path: |
v8\out.gn\x64.release.sample\obj\v8_monolith.lib
v8\out.gn\x64.release.sample\icudtl.dat
v8\include
key: windows-build-v8-${{ hashFiles('v8/src/**') }}
- name: Initialize MSVC environment
uses: ilammy/msvc-dev-cmd@v1
if: ${{ steps.restore-v8.outputs.cache-hit != 'true' }}
with:
toolset: 14.2
- name: Build Google V8
id: build-v8
if: ${{ steps.restore-v8.outputs.cache-hit != 'true' }}
continue-on-error: false
run: |
echo "v8-hash=${{ hashFiles('v8/src/**') }}" >> "$GITHUB_OUTPUT"
python -m pip install wheel
echo "::group::v8"
python setup.py v8
echo "::endgroup::"
- name: Save Google V8 to cache
uses: actions/cache/save@main
if: ${{ steps.restore-v8.outputs.cache-hit != 'true' }}
with:
# Save compiled binary and header files. This will save an
# additional clone of Google V8 for the linker
path: |
v8\out.gn\x64.release.sample\obj\v8_monolith.lib
v8\out.gn\x64.release.sample\icudtl.dat
v8\include
key: windows-build-v8-${{ hashFiles('v8/src/**') }}
build:
name: Build Windows wheel (Python ${{ matrix.python-version }})
needs: build-v8
runs-on: ${{ matrix.os }}
env:
DIST_NAME: stpyv8-windows-py${{ matrix.python-version }}
strategy:
matrix:
# Needed for MSVC toolset 14.2
os: [windows-2019]
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
boost-version: [1.84.0]
boost-version-snake: ['1_84_0']
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
id: install-python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Restore Boost from cache
id: restore-boost
uses: actions/cache/restore@main
with:
path: ${{ env.BOOST_ROOT }}\stage\lib
key: boost-${{ matrix.boost-version }}-python${{ matrix.python-version }}-vc142
- name: Initialize MSVC environment
uses: ilammy/msvc-dev-cmd@v1
if: ${{ steps.restore-boost.outputs.cache-hit != 'true' }}
with:
toolset: ${{ env.MSVC_TOOLSET_VERSION }}
- name: Download Boost
if: ${{ steps.restore-boost.outputs.cache-hit != 'true' }}
id: download-boost
uses: suisei-cn/actions-download-file@v1.6.0
with:
url: https://archives.boost.io/release/${{ matrix.boost-version }}/source/boost_${{matrix.boost-version-snake }}.zip
- name: Install Boost
if: ${{ steps.restore-boost.outputs.cache-hit != 'true' }}
id: install-boost
run: |
mkdir $env:BOOST_ROOT
Expand-Archive ${{ steps.download-boost.outputs.filename }} -DestinationPath $env:BOOST_ROOT
cd $env:BOOST_ROOT\*
echo "BOOST_ROOT=$pwd" >> $env:GITHUB_OUTPUT
echo "BOOST_ROOT=$pwd" >> $env:GITHUB_ENV
echo "BOOST_LIBRARYDIR=$pwd\stage\lib" >> $env:GITHUB_ENV
- name: Build Boost
if: ${{ steps.restore-boost.outputs.cache-hit != 'true' }}
working-directory: ${{ steps.install-boost.outputs.BOOST_ROOT }}
run: |
.\bootstrap.bat
if (-not $?) { type bootstrap.log }
# Set specific Python version
$escapedPythonPath = "${{ steps.install-python.outputs.python-path }}" -Replace "\\","\\"
echo "using python : : ""$escapedPythonPath"" ;" >> project-config.jam
# Patch bug affecting compilation on Python 3.10
# https://github.com/boostorg/python/commit/cbd2d9f033c61d29d0a1df14951f4ec91e7d05cd
(Get-Content libs\python\src\exec.cpp).replace('_Py_fopen', 'fopen') | Set-Content libs\python\src\exec.cpp
.\b2.exe stage -j 8 link=static runtime-link=static --with-python --with-filesystem --with-iostreams --with-date_time --with-thread
ls stage\lib
- name: Save Boost to cache
uses: actions/cache/save@main
if: ${{ steps.restore-boost.outputs.cache-hit != 'true' }}
with:
path: ${{ steps.install-boost.outputs.BOOST_ROOT }}\stage\lib
key: boost-${{ matrix.boost-version }}-python${{ matrix.python-version }}-vc142
- name: Restore Google V8 from cache
id: restore-v8
uses: actions/cache/restore@main
with:
path: |
v8\out.gn\x64.release.sample\obj\v8_monolith.lib
v8\out.gn\x64.release.sample\icudtl.dat
v8\include
key: windows-build-v8-${{ needs.build-v8.outputs.v8-hash }}
- name: Build wheel
env:
# Set include and library files which will be picked up by setuptools
INCLUDE: ${{ env.INCLUDE }};${{ steps.install-python.outputs.python-path
}}include
run: |
python -m pip install setuptools wheel delvewheel importlib_resources pytest pytest-order
# Google V8 build should already be supplied from cache hence no need to rebuild
python setup.py sdist bdist_wheel --skip-build-v8 -d wheelhouse-${{ env.DIST_NAME }}
if (-not $?) {
echo "::error::Wheel build failed"
exit 1
}
- name: Repair wheel
run: |
Get-ChildItem -Path wheelhouse-${{ env.DIST_NAME }} -Filter *.whl | Foreach-Object {
delvewheel repair -vv -w ${{ env.DIST_NAME }} $_.FullName
}
- name: Install wheel
run: |
python -m pip install --find-links=${{ env.DIST_NAME }} stpyv8
if (-not $?) {
echo "::error::Wheel installation failed"
exit 1
}
- name: Test wheel
run: |
pytest -v
- name: Upload wheel
uses: actions/upload-artifact@v4
with:
name: stpyv8-${{ matrix.os }}-python${{ matrix.python-version }}
path: ${{ env.DIST_NAME }}/*.whl
- name: Release
uses: softprops/action-gh-release@v2
if: ${{ github.event_name == 'release' }}
with:
files: ${{ env.DIST_NAME }}/*.whl
token: ${{ secrets.GITHUB_TOKEN }}
pypi-publish:
name: Upload release to PyPI
if: ${{ github.event_name == 'release' }}
needs: build
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/stpyv8
permissions:
id-token: write
steps:
- name: Download wheels
uses: actions/download-artifact@v4
with:
path: stpyv8-windows-dist
pattern: stpyv8-windows*
merge-multiple: true
- name: Publish wheels to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: stpyv8-windows-dist