@@ -513,7 +513,7 @@ jobs:
513
513
fail-fast : false
514
514
matrix :
515
515
job :
516
- # - { os , target , cargo-options , default-features, features , use-cross , toolchain, skip-tests, workspace-tests }
516
+ # - { os , target , cargo-options , default-features, features , use-cross , toolchain, skip-tests, workspace-tests, skip-package, skip-publish }
517
517
- { os: ubuntu-latest , target: arm-unknown-linux-gnueabihf , features: feat_os_unix_gnueabihf , use-cross: use-cross , skip-tests: true }
518
518
- { os: ubuntu-24.04-arm , target: aarch64-unknown-linux-gnu , features: feat_os_unix_gnueabihf }
519
519
- { os: ubuntu-latest , target: aarch64-unknown-linux-musl , features: feat_os_unix , use-cross: use-cross , skip-tests: true }
@@ -524,7 +524,7 @@ jobs:
524
524
- { os: ubuntu-latest , target: x86_64-unknown-linux-gnu , features: "feat_os_unix,uudoc" , use-cross: no, workspace-tests: true }
525
525
- { os: ubuntu-latest , target: x86_64-unknown-linux-musl , features: feat_os_unix , use-cross: use-cross }
526
526
- { os: ubuntu-latest , target: x86_64-unknown-redox , features: feat_os_unix_redox , use-cross: redoxer , skip-tests: true }
527
- - { os: ubuntu-latest , target: wasm32-unknown-unknown , default-features: false, features: uucore/format, skip-tests: true }
527
+ - { os: ubuntu-latest , target: wasm32-unknown-unknown , default-features: false, features: uucore/format, skip-tests: true, skip-package: true, skip-publish: true }
528
528
- { os: macos-latest , target: aarch64-apple-darwin , features: feat_os_macos, workspace-tests: true } # M1 CPU
529
529
- { os: macos-13 , target: x86_64-apple-darwin , features: feat_os_macos, workspace-tests: true }
530
530
- { os: windows-latest , target: i686-pc-windows-msvc , features: feat_os_windows }
@@ -788,6 +788,7 @@ jobs:
788
788
name : ${{ env.PROJECT_NAME }}-${{ matrix.job.target }}${{ steps.vars.outputs.ARTIFACTS_SUFFIX }}
789
789
path : target/${{ matrix.job.target }}/release/${{ env.PROJECT_NAME }}${{ steps.vars.outputs.EXE_suffix }}
790
790
- name : Package
791
+ if : matrix.job.skip-package != true
791
792
shell : bash
792
793
run : |
793
794
## Package artifact(s)
@@ -823,7 +824,7 @@ jobs:
823
824
fi
824
825
- name : Publish
825
826
uses : softprops/action-gh-release@v2
826
- if : steps.vars.outputs.DEPLOY
827
+ if : steps.vars.outputs.DEPLOY && matrix.job.skip-publish != true
827
828
with :
828
829
draft : true
829
830
files : |
0 commit comments