-
Notifications
You must be signed in to change notification settings - Fork 15
217 lines (187 loc) · 6.64 KB
/
test-pip-workflow.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
name: pip test
on:
workflow_dispatch:
inputs:
git-ref:
description: checkout this tag (overrieds branch)
required: false
tags:
description: tag to create a release
required: false
skip_test:
description: skip test
required: false
jobs:
clone:
runs-on: ubuntu-latest
steps:
- name: 'Clone Repository (Latest)'
uses: actions/checkout@v4
- name: 'Clone Repository (Custom Ref)'
uses: actions/checkout@v4
if: github.event.inputs.git-ref != ''
with:
ref: ${{ github.event.inputs.git-ref }}
- name: 'Create release'
if: github.event.inputs.tags != null
uses: softprops/action-gh-release@v2
id : create_release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
name: Release ${{ github.event.inputs.tags }}
tag_name: ${{ github.event.inputs.tags }}
draft: true
prerelease: true
build_pip:
needs: [clone]
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: macOS-12
name: macOS-x86_64
cpython-version: 39
python-version: "3.9"
platform_id: macosx_x86_64
cibw_manylinux: manylinux2014
cibw_arch: x86_64
- os: ubuntu-latest
name: x86_64
cpython-version: 39
python-version: "3.9"
platform_id: manylinux_x86_64
cibw_manylinux: manylinux2014
cibw_arch: x86_64
- os: macOS-12
name: macOS-x86_64
cpython-version: 310
python-version: "3.10"
platform_id: macosx_x86_64
cibw_manylinux: manylinux2014
cibw_arch: x86_64
- os: ubuntu-latest
name: x86_64
cpython-version: 310
python-version: "3.10"
platform_id: manylinux_x86_64
cibw_manylinux: manylinux2014
cibw_arch: x86_64
- os: macOS-12
name: macOS-x86_64
cpython-version: 311
python-version: "3.11"
platform_id: macosx_x86_64
cibw_manylinux: manylinux2014
cibw_arch: x86_64
- os: ubuntu-latest
name: x86_64
cpython-version: 311
python-version: "3.11"
platform_id: manylinux_x86_64
cibw_manylinux: manylinux2014
cibw_arch: x86_64
- os: macOS-14
name: MAC_ARM
cpython-version: 311
python-version: "3.11"
platform_id: macosx_arm64
cibw_manylinux: macosx_arm64
steps:
- name: 'Clone Repository (Latest)'
uses: actions/checkout@v4
- name: 'Clone Repository (Custom Ref)'
uses: actions/checkout@v4
if: github.event.inputs.git-ref != ''
with:
ref: ${{ github.event.inputs.git-ref }}
- name: 'set env JETSETBESSELBUILD'
run: |
echo "FALSE">JETSETBESSELBUILD
echo "JETSETBESSELBUILD=$(cat JETSETBESSELBUILD)" >> $GITHUB_ENV
- name: 'echo env TEST'
run: |
echo "JETSETBESSELBUILD=${{ env.JETSETBESSELBUILD }}"
python -v
- name: 'Install swig'
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt-get update; sudo apt-get install swig
elif [ "$RUNNER_OS" == "macOS" ]; then
brew install swig
else
echo "$RUNNER_OS not supported"
exit 1
fi
- name: 'Setup python'
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: 'adapt req'
run: |
python .github/workflows/adapt_reqirements_to_git_action.py
- name: Build SDist and install
run: |
python -m pip install --upgrade pip
pip install pytest
pip install wheel
pipx run build --sdist
pip install dist/*.tar.gz
- name: 'test sdist'
if: github.event.inputs.tags != null
working-directory: .github/action_test/
run: |
echo $(running tests!)
pytest --disable-warnings --pyargs -vvv jetset.tests.test_jet_model
- name: 'Upload Src Release Asset'
if: matrix.python-version == '3.9' && github.event.inputs.tags != null
uses: softprops/action-gh-release@v2
with:
name: Release ${{ github.event.inputs.tags }}
tag_name: ${{ github.event.inputs.tags }}
prerelease: true
draft: true
files: dist/*.tar.gz
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v4
if: github.event.inputs.git-ref != '' && github.event.inputs.tags != null
with:
ref: ${{ github.event.inputs.git-ref }}
- uses: pypa/[email protected]
if: github.event.inputs.tags != null && github.event.inputs.tags != null
env:
CIBW_SKIP: "*-musllinux_*"
CIBW_BUILD: cp${{ matrix.cpython-version }}-${{ matrix.platform_id }}
CIBW_MANYLINUX_X86_64_IMAGE: ${{ matrix.cibw_manylinux }}
CIBW_ARCHS: ${{ matrix.cibw_arch || 'auto' }}
#CIBW_ARCHS_LINUX: ${{ matrix.cibw_arch || 'auto' }}
#CIBW_ARCHS_MACOS: ${{ matrix.cibw_arch || 'auto' }}
#CIBW_TEST_COMMAND: pytest --disable-warnings --pyargs -vvv jetset.tests.test_jet_model && pytest --pyargs -vvv jetset.tests.test_hadronic_energetic && pytest --pyargs -vvv jetset.tests.test_integration::TestIntegration
- name: Show files
if: github.event.inputs.tags != null
run: ls -lh wheelhouse
shell: bash
- name: Verify clean directory
run: git diff --exit-code
shell: bash
- name: 'test'
if: github.event.inputs.skip_test != 'yes'
working-directory: .github/action_test/
run: |
echo $(running tests!)
pytest --pyargs -vvv jetset.tests.test_jet_model
pytest --pyargs -vvv jetset.tests.test_hadronic_energetic
pytest --pyargs -vvv jetset.tests.test_integration::TestIntegration
- name: 'Upload Binary Release Asset'
uses: softprops/action-gh-release@v2
if: github.event.inputs.tags != null
with:
name: Release ${{ github.event.inputs.tags }}
prerelease: true
draft: true
tag_name: ${{ github.event.inputs.tags }}
files: wheelhouse/*.whl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}