@@ -2,21 +2,18 @@ name: Build
22on :
33 # Trigger the workflow on pushes to only the 'master' branch (this avoids duplicate checks being run, e.g. for dependabot pull requests)
44 push :
5- branches : [master]
6- paths-ignore : ['**.md', '.teamcity/**']
5+ branches : [ master ]
6+ paths-ignore : [ '**.md', '.teamcity/**' ]
77 # Trigger the workflow on any pull request
88 pull_request :
9- paths-ignore : ['**.md', '.teamcity/**']
9+ paths-ignore : [ '**.md', '.teamcity/**' ]
1010
1111
1212# This allows a subsequently queued workflow run to interrupt previous runs
1313concurrency :
1414 group : ' ${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
1515 cancel-in-progress : true
1616
17- env :
18- XDG_CACHE_HOME : " ~/.config/"
19-
2017jobs :
2118
2219 gradleValidation :
@@ -33,12 +30,12 @@ jobs:
3330 needs : [ gradleValidation, unitTests ]
3431 uses : ./.github/workflows/reusable-integrationTests.yml
3532
36- # integrationTestsEAP:
37- # name: Integration Tests EAP
38- # needs: gradleValidation
39- # uses: ./.github/workflows/reusable-integrationTests.yml
40- # with:
41- # platformVersion: 222-EAP-SNAPSHOT
33+ # integrationTestsEAP:
34+ # name: Integration Tests EAP
35+ # needs: gradleValidation
36+ # uses: ./.github/workflows/reusable-integrationTests.yml
37+ # with:
38+ # platformVersion: 222-EAP-SNAPSHOT
4239
4340 codeInspection :
4441 name : Code Inspection
4946 name : Build
5047 needs :
5148 - unitTests
52- # - integrationTests
53- # - integrationTestsEAP
54- # - codeInspection
49+ # - integrationTests
50+ # - integrationTestsEAP
51+ # - codeInspection
5552 runs-on : ubuntu-latest
5653 outputs :
5754 version : ${{ steps.properties.outputs.version }}
7067 - name : Setup Gradle
7168 uses : gradle/gradle-build-action@v2
7269
73- - name : Cache XDG_CACHE_HOME
74- uses : actions/cache@v3
75- with :
76- path : ${{ env.XDG_CACHE_HOME }}
77- key : ${{ runner.os }}-XDG_CACHE_HOME-${{ hashFiles('**/*.gradle*') }}
78- restore-keys : |
79- ${{ runner.os }}-XDG_CACHE_HOME-
80-
8170 # Set environment variables
8271 - name : Export Properties
8372 id : properties
0 commit comments