File tree Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -218,7 +218,12 @@ jobs:
218
218
- name : Validate Distribution
219
219
run : |
220
220
chmod +x build/pythonbuild
221
- build/pythonbuild validate-distribution dist/*.tar.zst
221
+
222
+ if [ "${{matrix.triple }}" = "x86_64-apple-darwin" ]; then
223
+ EXTRA_ARGS="--run"
224
+ fi
225
+
226
+ build/pythonbuild validate-distribution ${EXTRA_ARGS} dist/*.tar.zst
222
227
223
228
- name : Upload Distributions
224
229
uses : actions/upload-artifact@v2
Original file line number Diff line number Diff line change @@ -243,7 +243,12 @@ jobs:
243
243
- name : Validate Distribution
244
244
run : |
245
245
chmod +x build/pythonbuild
246
- build/pythonbuild validate-distribution dist/*.tar.zst
246
+
247
+ if [[ "${{matrix.triple }}" == x86_64-* ]]; then
248
+ EXTRA_ARGS="--run"
249
+ fi
250
+
251
+ build/pythonbuild validate-distribution ${EXTRA_ARGS} dist/*.tar.zst
247
252
248
253
- name : Upload Distribution
249
254
uses : actions/upload-artifact@v2
Original file line number Diff line number Diff line change 85
85
- name : Validate Distribution
86
86
run : |
87
87
$Dists = Resolve-Path -Path "dist/*.tar.zst" -Relative
88
- .\pythonbuild.exe validate-distribution $Dists
88
+ .\pythonbuild.exe validate-distribution --run $Dists
89
89
90
90
- name : Upload Distributions
91
91
uses : actions/upload-artifact@v2
You can’t perform that action at this time.
0 commit comments