-
Notifications
You must be signed in to change notification settings - Fork 15
232 lines (197 loc) · 6.73 KB
/
test-conda-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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
name: conda 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_conda:
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 }}
- uses: mamba-org/setup-micromamba@v1
with:
environment-name: test-env
create-args: >-
python=${{ matrix.python-version }}
swig>=4
conda-build
pytest
boa
generate-run-shell: true
init-shell: bash
- name: 'Install dependencies'
shell: bash
run: |
source ~/.bash_profile
micromamba activate test-env
micromamba install -c astropy -c conda-forge --file requirements.txt
- name: 'set env JETSETBESSELBUILD'
run: |
echo "FALSE">JETSETBESSELBUILD
echo "JETSETBESSELBUILD=$(cat JETSETBESSELBUILD)" >> $GITHUB_ENV
- name: 'echo env TEST'
run: |
echo "JETSETBESSELBUILD=${{ env.JETSETBESSELBUILD }}"
- name: 'generate meta.yaml from requirements.txt'
run: |
source ~/.bash_profile
micromamba activate test-env
python .github/workflows/requirements_to_conda_yml.py
- name: 'conda build'
if: github.event.inputs.tags != null
working-directory: .github/conda-pipeline/github/
run: |
source ~/.bash_profile
micromamba activate test-env
cat meta.yaml
cat build.sh
conda config --set anaconda_upload no
conda build purge
echo "building"
conda mambabuild . -c conda-forge -c astropy
echo "redirect output"
conda mambabuild . --output > ./CONDABUILDJETSET.txt
- name: 'set env CONDABUILDJETSET'
if: github.event.inputs.tags != null
working-directory: .github/conda-pipeline/github/
run: |
echo $(cat CONDABUILDJETSET.txt)
echo "CONDABUILDJETSET=$(tail -1 CONDABUILDJETSET.txt)" >> $GITHUB_ENV
- name: 'echo env CONDABUILDJETSET'
if: github.event.inputs.tags != null
working-directory: .github/conda-pipeline/github/
run: echo "CONDABUILDJETSET=${{env.CONDABUILDJETSET}}"
- name: 'conda install from conda build'
if: github.event.inputs.tags != null
run: |
source ~/.bash_profile
micromamba activate test-env
conda install --yes --offline $CONDABUILDJETSET
- name: 'conda install from source'
if: github.event.inputs.tags == null
run: |
source ~/.bash_profile
micromamba activate test-env
python setup.py install
- name: 'test'
if: github.event.inputs.skip_test != 'yes'
working-directory: .github/action_test/
run: |
echo $(running tests!)
source ~/.bash_profile
micromamba activate test-env
pytest --pyargs -vvv jetset.tests.test_jet_model
pytest --pyargs -vvv jetset.tests.test_hadronic_energetic
pytest --pyargs -vvv jetset.tests.test_integration::TestIntegration
env:
WF_ENV: CONDA
- name: 'prepare asset'
if: github.event.inputs.tags != null
shell: bash
run: |
python .github/workflows/conda_rename.py
#- name: Upload packages
# uses: actions/upload-artifact@v4
# if: github.event.inputs.tags != null
# with:
# overwrite: true
# path: 'conda-binary/*'
- name: 'Upload Release Asset'
if: 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: 'conda-binary/*'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}