mirror of
https://github.com/SonarSource/sonarqube-scan-action.git
synced 2025-12-12 17:31:15 +00:00
Disable fail fast on matrix jobs
This commit is contained in:
parent
cdefb11fbe
commit
3b1a0d504d
1 changed files with 7 additions and 0 deletions
7
.github/workflows/qa-main.yml
vendored
7
.github/workflows/qa-main.yml
vendored
|
|
@ -12,6 +12,7 @@ jobs:
|
||||||
name: >
|
name: >
|
||||||
No inputs
|
No inputs
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ github-ubuntu-latest-s, macos-latest ]
|
os: [ github-ubuntu-latest-s, macos-latest ]
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
@ -31,6 +32,7 @@ jobs:
|
||||||
name: >
|
name: >
|
||||||
'args' input
|
'args' input
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ github-ubuntu-latest-s, github-windows-latest-s, macos-latest ]
|
os: [ github-ubuntu-latest-s, github-windows-latest-s, macos-latest ]
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
@ -54,6 +56,7 @@ jobs:
|
||||||
name: >
|
name: >
|
||||||
'args' input with command injection will fail
|
'args' input with command injection will fail
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ github-ubuntu-latest-s, github-windows-latest-s, macos-latest ]
|
os: [ github-ubuntu-latest-s, github-windows-latest-s, macos-latest ]
|
||||||
args: [ -Dsonar.someArg=aValue && echo "Injection", -Dsonar.someArg="value\"; whoami; echo \"" ]
|
args: [ -Dsonar.someArg=aValue && echo "Injection", -Dsonar.someArg="value\"; whoami; echo \"" ]
|
||||||
|
|
@ -81,6 +84,7 @@ jobs:
|
||||||
name: >
|
name: >
|
||||||
'args' input with backticks injection does not execute command
|
'args' input with backticks injection does not execute command
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ github-ubuntu-latest-s, github-windows-latest-s, macos-latest ]
|
os: [ github-ubuntu-latest-s, github-windows-latest-s, macos-latest ]
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
@ -381,6 +385,7 @@ jobs:
|
||||||
name: >
|
name: >
|
||||||
'RUNNER_DEBUG' is used
|
'RUNNER_DEBUG' is used
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ github-ubuntu-latest-s, github-windows-latest-s, macos-latest ]
|
os: [ github-ubuntu-latest-s, github-windows-latest-s, macos-latest ]
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
@ -440,6 +445,7 @@ jobs:
|
||||||
name: >
|
name: >
|
||||||
'SONARCLOUD_URL' is used
|
'SONARCLOUD_URL' is used
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ github-ubuntu-latest-s, github-windows-latest-s, macos-latest ]
|
os: [ github-ubuntu-latest-s, github-windows-latest-s, macos-latest ]
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
@ -579,6 +585,7 @@ jobs:
|
||||||
name: >
|
name: >
|
||||||
'SONAR_ROOT_CERT' is converted to truststore
|
'SONAR_ROOT_CERT' is converted to truststore
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ github-ubuntu-latest-s, github-windows-latest-s, macos-latest ]
|
os: [ github-ubuntu-latest-s, github-windows-latest-s, macos-latest ]
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue