Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SRetip committed Mar 20, 2024
1 parent dbffffa commit d4041da
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/StandardRustPush.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on :
concurrency :

group : standard_rust_push_${{ inputs.module_name }}_${{ github.ref }}_
${{ contains( inputs.commit_message, '!test' ) || startsWith( inputs.commit_message, 'Merge' ) || contains( inputs.commit_message, inputs.module_name ) }}_
${{ contains( inputs.commit_message, '+test' ) || startsWith( inputs.commit_message, 'Merge' ) || contains( inputs.commit_message, inputs.module_name ) }}_
${{ !contains( inputs.commit_message, '!only_js' )}}
cancel-in-progress : true

Expand All @@ -35,7 +35,7 @@ env :
jobs :

checkmate:
if: contains( inputs.commit_message, '!test' ) || contains( inputs.commit_message, 'merge' )
if: contains( inputs.commit_message, '+test' ) || contains( inputs.commit_message, 'merge' )
runs-on: ubuntu-latest
steps:
- name: Install latest nightly toolchain
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs :
continue-on-error: true

# release:
# if: contains( inputs.commit_message, '!test' ) || contains( inputs.commit_message, 'merge' )
# if: contains( inputs.commit_message, '+test' ) || contains( inputs.commit_message, 'merge' )
# strategy:
# fail-fast: false
# matrix:
Expand All @@ -99,7 +99,7 @@ jobs :
# run: cargo build --manifest-path ${{ inputs.manifest_path }} --release

# miri:
# if: contains( inputs.commit_message, '!test' ) || contains( inputs.commit_message, 'merge' )
# if: contains( inputs.commit_message, '+test' ) || contains( inputs.commit_message, 'merge' )
# runs-on: ubuntu-latest
# steps:
# - name: Install latest nightly toolchain
Expand All @@ -120,7 +120,7 @@ jobs :
# run: cargo miri test --manifest-path ${{ inputs.manifest_path }}

will_test :
if : contains( inputs.commit_message, '!test' ) || contains( inputs.commit_message, 'merge' )
if : contains( inputs.commit_message, '+test' ) || contains( inputs.commit_message, 'merge' )
concurrency :
group : standard_rust_push_${{ inputs.module_name }}_${{ github.ref }}_${{ matrix.os }}
cancel-in-progress : true
Expand Down Expand Up @@ -155,4 +155,4 @@ jobs :
id: rootpath
run: echo "::set-output name=path::$(dirname ${{ inputs.manifest_path }})"
- name: Run tests with each feature
run: will .test ${{ steps.rootpath.outputs.path }} dry:0
run: will .test ${{ steps.rootpath.outputs.path }} dry:0 exclude:'' with_all_features:1 with_debug:1 with_nightly:1 with_none_features:1 with_release:1 with_stable:1
2 changes: 1 addition & 1 deletion .github/workflows/StandardRustScheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ jobs :
with :
manifest_path : './Cargo.toml'
module_name : $\{{ github.event.base.ref }}_$\{{ github.event.number }}
commit_message : !test_$\{{ github.event.base.ref }}_$\{{ github.event.number }}
commit_message : +test_$\{{ github.event.base.ref }}_$\{{ github.event.number }}
Original file line number Diff line number Diff line change
Expand Up @@ -155,4 +155,4 @@ jobs :
id: rootpath
run: echo "::set-output name=path::$(dirname ${{ inputs.manifest_path }})"
- name: Run tests with each feature
run: will .test ${{ steps.rootpath.outputs.path }} dry:0
run: will .test ${{ steps.rootpath.outputs.path }} dry:0 exclude:'' with_all_features:1 with_debug:1 with_nightly:1 with_none_features:1 with_release:1 with_stable:1

0 comments on commit d4041da

Please sign in to comment.