ci: temporarily disable unit and integration tests
Disabling unit and integration test jobs to save GitHub Actions minutes while troubleshooting installer test failures in Docker containers. This reduces CI runtime from ~4-5 minutes to ~1 minute per run. To re-enable: remove the 'if: false' lines from unit-tests and integration-tests jobs in .github/workflows/test.yml
This commit is contained in:
parent
bc839fba93
commit
5feb5a9af1
1 changed files with 2 additions and 0 deletions
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
|
@ -10,6 +10,7 @@ jobs:
|
|||
unit-tests:
|
||||
name: Unit Tests
|
||||
runs-on: ubuntu-latest
|
||||
if: false # Temporarily disabled to save CI minutes while troubleshooting installer tests
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
|
|
@ -61,6 +62,7 @@ jobs:
|
|||
integration-tests:
|
||||
name: Integration Tests
|
||||
runs-on: ubuntu-latest
|
||||
if: false # Temporarily disabled to save CI minutes while troubleshooting installer tests
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue