feat<ci>: for a manual job for

This commit is contained in:
Mathieu Lala 2023-02-05 13:16:55 +01:00
parent c7355395c9
commit 933ffbc3fc
No known key found for this signature in database
GPG Key ID: C5D308ABEB84866F
2 changed files with 25 additions and 12 deletions

View File

@ -88,18 +88,6 @@ jobs:
command: test
args: ${{matrix.flags}}
feature_powerset:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: stable
- uses: taiki-e/install-action@v2
with:
tool: cargo-hack@0.5.25
- run: cargo hack check --feature-powerset --depth 2 --no-dev-deps --exclude-features "stdweb wasm-bindgen f32_float"
# no-std builds are a bit more extensive to test
no_std_build:
name: NoStdBuild

25
.github/workflows/ci.yaml vendored Normal file
View File

@ -0,0 +1,25 @@
name: Manual CI
on:
workflow_dispatch:
inputs:
depth:
description: "Specify a max number of simultaneous feature flags"
required: true
type: string
default: "2"
jobs:
feature_powerset:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: stable
- uses: taiki-e/install-action@v2
with:
tool: cargo-hack@0.5.25
- run: cargo hack check --feature-powerset --depth ${{ inputs.depth }} --no-dev-deps --exclude-features $FEATURE_EXCLUDE
env:
FEATURE_EXCLUDE: "no_std stdweb wasm-bindgen f32_float only_i32 unicode-xid-ident bin-features"