forked from eclipse-sumo/sumo
-
Notifications
You must be signed in to change notification settings - Fork 7
233 lines (200 loc) · 7.23 KB
/
wheel-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
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
name: windows-wheels
on:
push: # run on push events
paths-ignore: # but ignore everything in the docs subfolder
- 'docs/**'
- 'src/gui*/**'
- 'src/netedit/**'
- 'tests/netedit/**'
branches:
- '**'
tags:
- '*'
pull_request: # run on pull requests
paths-ignore: # but ignore everything in the docs subfolder
- 'docs/**'
workflow_dispatch:
schedule:
- cron: '5 1 * * *'
jobs:
build-wheels:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
build_type: [libsumo]
python_version: [3.7, 3.8, 3.9, '3.10', 3.11, 3.12]
include:
- build_type: sumo
python_version: 3.8
env:
CC: cl
CXX: cl
SUMO_LIBRARIES: D:\a\sumo\sumo\sumolibraries
TMPDIR: D:\a\sumo\sumo\tmp
TEXTTEST_TMP: 'D:/texttest'
steps:
- name: Cloning SUMO
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Fetching SUMO tags
run: git fetch --tags --force
- name: Cloning SUMO Libraries
uses: actions/checkout@v4
with:
repository: DLR-TS/SUMOLibraries
path: sumolibraries
- name: Configuring Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python_version }}
architecture: x64
- name: "Set up compiler cache"
uses: actions/cache@v4
with:
path: C:\Users\runneradmin\AppData\Local\Mozilla\sccache\cache
key: ${{ matrix.build_type }}-${{ matrix.python_version }}-${{ github.head_ref }}-${{ github.run_number }}
restore-keys: |
${{ matrix.build_type }}-${{ matrix.python_version }}-${{ github.head_ref }}-
${{ matrix.build_type }}-${{ matrix.python_version }}-
# required for CMake to find Ninja
- name: "Set up MSVC Developer Command Prompt"
# uses: seanmiddleditch/gha-setup-vsdevenv@v4 # disabled until it gets an update for node.js
uses: compnerd/gha-setup-vsdevenv@main
- name: Installing Python build environment
run: python -m pip install wheel build
- name: Building libsumo plain
if: matrix.build_type == 'libsumo'
run: |
cmake -Bbuild_msvc -GNinja -DCHECK_OPTIONAL_LIBS=false
cmake --build build_msvc --config Release --target libsumo libtraci
xcopy /s data .\tools\libsumo\data\
python tools\build_config\version.py tools\build_config\setup-libsumo.py tools\setup.py
python -m build --wheel tools -o dist --config-setting=--plat-name=win_amd64
- name: Uploading artifacts
if: matrix.build_type == 'libsumo'
uses: actions/upload-artifact@v4
with:
name: libsumo-python-${{ matrix.python_version }}-wheels
path: dist
- name: Building SUMO Wheels
if: matrix.build_type == 'sumo'
run: |
python tools\build_config\version.py tools\build_config\setup-sumolib.py tools\setup.py
python -m build --wheel tools -o dist
python tools\build_config\version.py tools\build_config\setup-traci.py tools\setup.py
python -m build --wheel tools -o dist
python tools\build_config\buildWindowsSUMOWheel.py
- name: Uploading artifacts
if: matrix.build_type == 'sumo'
uses: actions/upload-artifact@v4
with:
name: sumo-python-wheels
path: dist
- name: Plain libsumo tests
if: matrix.build_type == 'libsumo'
run: |
$env:PATH += ";$pwd\bin"
cd build_msvc
$env:TEXTTEST_CI_APPS = "-a complex.libsumo.ci"
ctest -R texttest --verbose
copy Testing/Temporary/LastTest.log D:/texttest
- name: Compressing test results
if: failure()
run: Compress-Archive -Path $env:TEXTTEST_TMP -DestinationPath D:/texttest_plain.zip
- name: Uploading test results
if: failure()
uses: actions/upload-artifact@v4
with:
name: texttesttmp-${{ matrix.build_type }}-${{ matrix.python_version }}
path: D:/texttest_plain.zip
if-no-files-found: warn
###################
# testing wheels
###################
test-wheels:
needs: [build-wheels]
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
python_version: [3.7, 3.8, 3.9, '3.10', 3.11, 3.12]
env:
TEXTTEST_TMP: 'D:/texttest'
steps:
- name: Cloning SUMO
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Fetching SUMO tags
run: git fetch --tags --force
- name: Downloading Wheels artifact
uses: actions/download-artifact@v4
with:
path: python-wheels
merge-multiple: true
- name: Configuring Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python_version }}
- name: Preparing Python environment
run: |
python -m pip install texttest
python -m pip install -f python-wheels eclipse_sumo
python -c "import sumo; print('SUMO_HOME=' + sumo.SUMO_HOME)" >> $env:GITHUB_ENV
- name: Running "sumo in the wheel" tests
if: github.repository == 'DLR-TS/sumo'
run: |
python -m pip install -r tools/req_ci.txt -r tools/requirements.txt
$env:TEXTTEST_CI_APPS = "-v ci.fast -a activitygen,dfrouter,duarouter,jtrrouter,marouter,netgen,od2trips,polyconvert,netconvert,sumo"
tests\runCiTests.bat $env:pythonLocation\Scripts\texttestc.py
# $env:TEXTTEST_CI_APPS = "-v ci.fast -a complex,tools"
# tests\runCiTests.bat $env:pythonLocation\Scripts\texttestc.py
- name: Running meta tests and cleaning up
run: |
$env:TEXTTEST_CI_APPS = "-ts meta"
tests\runCiTests.bat $env:pythonLocation\Scripts\texttestc.py
python -m pip uninstall -y eclipse-sumo
- name: Installing libsumo
run: python -m pip install --user -f python-wheels sumolib traci libsumo
# - name: Running libsumo tests
# run: |
# $env:TEXTTEST_CI_APPS = "-a complex.libsumo"
# tests\runCiTests.bat $env:pythonLocation\Scripts\texttestc.py
- name: Compressing test results
if: failure()
run: Compress-Archive -Path $env:TEXTTEST_TMP -DestinationPath D:/texttest_installed.zip
- name: Uploading test results
if: failure()
uses: actions/upload-artifact@v4
with:
name: texttesttmp-installed-${{ matrix.python_version }}
path: D:/texttest_installed.zip
if-no-files-found: warn
###################
# publishing wheels
###################
publish-wheels:
if: github.repository == 'eclipse-sumo/sumo' && (github.event_name == 'workflow_dispatch' || startsWith(github.ref, 'refs/tags'))
needs: [test-wheels]
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v4
# this step removes the sumolib and traci packages which linux takes care of
- name: Moving artifacts
run: |
ls -lR
mkdir dist
mv ./*-wheels/* dist
rm -f dist/sumolib* dist/traci*
- name: Publish to Test PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/
skip-existing: true
- name: Publish to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1