mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
chore: improve ci perf (#9098)
Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> Co-authored-by: shuting <shuting@nirmata.com>
This commit is contained in:
parent
4d2f7fa8d3
commit
f924cdd022
4 changed files with 8 additions and 0 deletions
2
.github/workflows/codecov.yaml
vendored
2
.github/workflows/codecov.yaml
vendored
|
@ -30,6 +30,8 @@ jobs:
|
||||||
- name: Setup build env
|
- name: Setup build env
|
||||||
uses: ./.github/actions/setup-build-env
|
uses: ./.github/actions/setup-build-env
|
||||||
timeout-minutes: 10
|
timeout-minutes: 10
|
||||||
|
with:
|
||||||
|
free-disk-space: false
|
||||||
- name: Generate Code Coverage Report
|
- name: Generate Code Coverage Report
|
||||||
run: make code-cov-report
|
run: make code-cov-report
|
||||||
- name: Upload Report to Codecov
|
- name: Upload Report to Codecov
|
||||||
|
|
2
.github/workflows/fossa.yml
vendored
2
.github/workflows/fossa.yml
vendored
|
@ -30,6 +30,8 @@ jobs:
|
||||||
if: steps.checksecret.outputs.result == 'true'
|
if: steps.checksecret.outputs.result == 'true'
|
||||||
uses: ./.github/actions/setup-build-env
|
uses: ./.github/actions/setup-build-env
|
||||||
timeout-minutes: 10
|
timeout-minutes: 10
|
||||||
|
with:
|
||||||
|
free-disk-space: false
|
||||||
- name: Run FOSSA analysis
|
- name: Run FOSSA analysis
|
||||||
if: steps.checksecret.outputs.result == 'true'
|
if: steps.checksecret.outputs.result == 'true'
|
||||||
uses: fossas/fossa-action@f61a4c0c263690f2ddb54b9822a719c25a7b608f # v1.3.1
|
uses: fossas/fossa-action@f61a4c0c263690f2ddb54b9822a719c25a7b608f # v1.3.1
|
||||||
|
|
2
.github/workflows/sonarcloud.yaml
vendored
2
.github/workflows/sonarcloud.yaml
vendored
|
@ -31,6 +31,8 @@ jobs:
|
||||||
if: steps.checksecret.outputs.result == 'true'
|
if: steps.checksecret.outputs.result == 'true'
|
||||||
uses: ./.github/actions/setup-build-env
|
uses: ./.github/actions/setup-build-env
|
||||||
timeout-minutes: 10
|
timeout-minutes: 10
|
||||||
|
with:
|
||||||
|
free-disk-space: false
|
||||||
- name: SonarCloud Scan
|
- name: SonarCloud Scan
|
||||||
if: steps.checksecret.outputs.result == 'true'
|
if: steps.checksecret.outputs.result == 'true'
|
||||||
uses: sonarsource/sonarcloud-github-action@db501078e936e4b4c8773d1bb949ba9ddb7b6b6a # v1.9
|
uses: sonarsource/sonarcloud-github-action@db501078e936e4b4c8773d1bb949ba9ddb7b6b6a # v1.9
|
||||||
|
|
2
.github/workflows/tests.yaml
vendored
2
.github/workflows/tests.yaml
vendored
|
@ -30,5 +30,7 @@ jobs:
|
||||||
- name: Setup build env
|
- name: Setup build env
|
||||||
uses: ./.github/actions/setup-build-env
|
uses: ./.github/actions/setup-build-env
|
||||||
timeout-minutes: 10
|
timeout-minutes: 10
|
||||||
|
with:
|
||||||
|
free-disk-space: false
|
||||||
- name: Unit test
|
- name: Unit test
|
||||||
run: make test-unit
|
run: make test-unit
|
||||||
|
|
Loading…
Add table
Reference in a new issue