Skip to content

Commit e48f90f

Browse files
committed
GitHub Actions: limit tests
1 parent bd6db07 commit e48f90f

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/build.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ jobs:
2828
needs: gradleValidation
2929
uses: ./.github/workflows/reusable-unitTests.yml
3030

31-
integrationTests:
32-
name: Integration Tests
33-
needs: [ gradleValidation, unitTests ]
34-
uses: ./.github/workflows/reusable-integrationTests.yml
31+
# integrationTests:
32+
# name: Integration Tests
33+
# needs: [ gradleValidation, unitTests ]
34+
# uses: ./.github/workflows/reusable-integrationTests.yml
3535

3636
# integrationTestsEAP:
3737
# name: Integration Tests EAP
@@ -40,18 +40,18 @@ jobs:
4040
# with:
4141
# platformVersion: 222-EAP-SNAPSHOT
4242

43-
codeInspection:
44-
name: Code Inspection
45-
needs: integrationTests
46-
uses: ./.github/workflows/reusable-codeInspection.yml
43+
# codeInspection:
44+
# name: Code Inspection
45+
# needs: integrationTests
46+
# uses: ./.github/workflows/reusable-codeInspection.yml
4747

4848
build:
4949
name: Build
5050
needs:
5151
- unitTests
52-
- integrationTests
52+
# - integrationTests
5353
# - integrationTestsEAP
54-
- codeInspection
54+
# - codeInspection
5555
runs-on: ubuntu-latest
5656
outputs:
5757
version: ${{ steps.properties.outputs.version }}

.github/workflows/reusable-unitTests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
fail-fast: false
3131
matrix:
3232
gradleVersion:
33-
- "7.3"
33+
# - "7.3"
3434
- "7.6.1"
3535
- "8.0.1"
3636
os:

0 commit comments

Comments
 (0)