Skip to content

Commit

Permalink
Mergify: fix merge proteciton rule
Browse files Browse the repository at this point in the history
The name of skipped jobs from a matrix needed to be fixed
  • Loading branch information
bartgol committed Nov 13, 2024
1 parent efde774 commit db5b35d
Showing 1 changed file with 19 additions and 32 deletions.
51 changes: 19 additions & 32 deletions .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,38 +7,25 @@ merge_protections:
- "#approved-reviews-by >= 1" # At least 1 approval
- "#changes-requested-reviews-by == 0" # No reviewer asked for changes
- or:
- check-success="gcc-openmp / dbg"
- check-skipped="gcc-openmp / dbg"
- or:
- check-success="gcc-openmp / sp"
- check-skipped="gcc-openmp / sp"
- or:
- check-success="gcc-openmp / fpe"
- check-skipped="gcc-openmp / fpe"
- or:
- check-success="gcc-openmp / opt"
- check-skipped="gcc-openmp / opt"
- or:
- check-success="gcc-cuda / dbg"
- check-skipped="gcc-cuda / dbg"
- or:
- check-success="gcc-cuda / sp"
- check-skipped="gcc-cuda / sp"
- or:
- check-success="gcc-cuda / opt"
- check-skipped="gcc-cuda / opt"
- or:
- check-success="cpu-gcc / ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.scream-output-preset-2"
- check-skipped="cpu-gcc / ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.scream-output-preset-2"
- or:
- check-success="cpu-gcc / ERS_P16_Ln22.ne30pg2_ne30pg2.FIOP-SCREAMv1-DP.scream-dpxx-arm97"
- check-skipped="cpu-gcc / ERS_P16_Ln22.ne30pg2_ne30pg2.FIOP-SCREAMv1-DP.scream-dpxx-arm97"
- or:
- check-success="cpu-gcc / ERS_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.scream-small_kernels--scream-output-preset-5"
- check-skipped="cpu-gcc / ERS_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.scream-small_kernels--scream-output-preset-5"
- or:
- check-success="cpu-gcc / SMS_D_Ln5.ne4pg2_oQU480.F2010-SCREAMv1-MPASSI.scream-mam4xx-all_mam4xx_procs"
- check-skipped="cpu-gcc / SMS_D_Ln5.ne4pg2_oQU480.F2010-SCREAMv1-MPASSI.scream-mam4xx-all_mam4xx_procs"
- and:
- check-success="gcc-openmp / dbg"
- check-success="gcc-openmp / sp"
- check-success="gcc-openmp / fpe"
- check-success="gcc-openmp / opt"
- check-skipped={% raw %}gcc-openmp / ${{ matrix.build_type }}{% endraw %}
- or:
- and:
- check-success="gcc-cuda / dbg"
- check-success="gcc-cuda / sp"
- check-success="gcc-cuda / opt"
- check-skipped={% raw %}gcc-cuda / ${{ matrix.build_type }}{% endraw %}
- or:
- and:
- check-success="cpu-gcc / ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.scream-output-preset-2"
- check-success="cpu-gcc / ERS_P16_Ln22.ne30pg2_ne30pg2.FIOP-SCREAMv1-DP.scream-dpxx-arm97"
- check-success="cpu-gcc / ERS_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.scream-small_kernels--scream-output-preset-5"
- check-success="cpu-gcc / SMS_D_Ln5.ne4pg2_oQU480.F2010-SCREAMv1-MPASSI.scream-mam4xx-all_mam4xx_procs"
- check-skipped={% raw %}cpu-gcc / ${{ matrix.test.short_name }}{% endraw %}
- or:
- check-success=cpu-gcc
- check-skipped=cpu-gcc
Expand Down

0 comments on commit db5b35d

Please sign in to comment.