File tree 2 files changed +14
-5
lines changed 2 files changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -208,12 +208,16 @@ jobs:
208
208
token : " ${{ secrets.GITHUB_TOKEN }}"
209
209
210
210
conda :
211
- name : Conda deployment of package with Python ${{ matrix.python-version }}
212
- runs-on : ubuntu-latest
211
+ name : Conda deployment of package for platform ${{ matrix.os }} with Python ${{ matrix.python-version }}
212
+ runs-on : ${{ matrix.os }}
213
213
needs : [ tag, github, version_check ]
214
214
if : ${{ startsWith(github.ref_name, 'v') || needs.version_check.outputs.PCAPKIT_TAG_EXISTS == 'false' }}
215
215
strategy :
216
216
matrix :
217
+ os :
218
+ - macos-latest
219
+ - ubuntu-latest
220
+ - windows-latest
217
221
python-version :
218
222
# - "3.7" # skip for now
219
223
- " 3.8"
@@ -265,7 +269,6 @@ jobs:
265
269
with :
266
270
meta_yaml_dir : conda/pypcapkit
267
271
python-version : ${{ matrix.python-version }} # Values previously defined in `matrix`
268
- platform_all : true
269
272
user : jarryshaw
270
273
label : ${{ needs.version_check.outputs.PCAPKIT_CONDA_LABEL }}
271
274
token : ${{ secrets.ANACONDA_TOKEN }} # Replace with the right name of your secret
@@ -275,6 +278,6 @@ jobs:
275
278
with :
276
279
allowUpdates : true
277
280
artifacts : |
278
- /tmp/compilation-*/*.tar.bz2
281
+ /tmp/compilation-*/**/* .tar.bz2
279
282
tag : " v${{ needs.version_check.outputs.PCAPKIT_VERSION }}"
280
283
token : " ${{ secrets.GITHUB_TOKEN }}"
Original file line number Diff line number Diff line change 8
8
9
9
jobs :
10
10
conda-update :
11
+ name : Update requirements.txt
11
12
runs-on : ubuntu-latest
12
13
steps :
13
14
- uses : actions/checkout@v3
@@ -103,11 +104,16 @@ jobs:
103
104
tags : true
104
105
105
106
conda-dist :
107
+ name : Conda deployment of package for platform ${{ matrix.os }} with Python ${{ matrix.python-version }}
106
108
runs-on : ubuntu-latest
107
109
needs : [ conda-tag, conda-update ]
108
110
if : needs.conda-update.outputs.CONDA_CHANGED == 'true'
109
111
strategy :
110
112
matrix :
113
+ os :
114
+ - macos-latest
115
+ - ubuntu-latest
116
+ - windows-latest
111
117
python-version :
112
118
# - "3.7" # skip for now
113
119
- " 3.8"
@@ -169,6 +175,6 @@ jobs:
169
175
with :
170
176
allowUpdates : true
171
177
artifacts : |
172
- /tmp/compilation-*/*.tar.bz2
178
+ /tmp/compilation-*/**/* .tar.bz2
173
179
tag : " v${{ needs.conda-update.outputs.PCAPKIT_VERSION }}"
174
180
token : " ${{ secrets.GITHUB_TOKEN }}"
You can’t perform that action at this time.
0 commit comments