File tree Expand file tree Collapse file tree 4 files changed +28
-30
lines changed
Expand file tree Collapse file tree 4 files changed +28
-30
lines changed Original file line number Diff line number Diff line change @@ -12,22 +12,19 @@ jobs:
1212 - name : Checkout Repository
1313 uses : actions/checkout@v4
1414
15- - name : Setup JDK 8
15+ - name : Setup JDK 11
1616 uses : actions/setup-java@v4
1717 with :
18- distribution : ' temurin '
19- java-version : ' 1.8 '
18+ java-version : 11
19+ distribution : corretto
2020
2121 - name : Build and Test
22- run : ./gradlew clan build
22+ run : ./gradlew clean build
2323
2424 run-integration-tests :
25- runs-on : ubuntu-latest
26- steps :
27- - name : Run Integration Tests
28- uses : ./.github/workflows/run-integration-tests.yaml
29- with :
30- branch : main
31- jdk : ' 1.8'
32- distribution : ' corretto'
25+ uses : ./.github/workflows/run-integration-tests.yaml
26+ with :
27+ branch : ${{ github.ref }}
28+ jdk : 11
29+ distribution : corretto
3330
Original file line number Diff line number Diff line change @@ -7,15 +7,15 @@ permissions:
77 contents : write
88
99jobs :
10- run-examples :
11- runs-on : ubuntu-latest
12- steps :
13- - name : Run Examples
14- uses : ./.github/workflows/run-examples.yaml
15- with :
16- branch : main
17- jdk : ' 1.8 '
18- distribution : ' corretto'
10+ # run-examples:
11+ # runs-on: ubuntu-latest
12+ # steps:
13+ # - name: Run Examples
14+ # uses: ./.github/workflows/run-examples.yaml
15+ # with:
16+ # branch: main
17+ # jdk: 11
18+ # distribution: corretto
1919
2020 run-integration-tests :
2121 runs-on : ubuntu-latest
@@ -24,23 +24,23 @@ jobs:
2424 uses : ./.github/workflows/run-integration-tests.yaml
2525 with :
2626 branch : main
27- jdk : ' 1.8 '
28- distribution : ' corretto'
27+ jdk : 11
28+ distribution : corretto
2929
3030 publish-to-maven-central :
3131 runs-on : ubuntu-latest
32- needs : [run-examples, run- integration-tests]
32+ needs : [run-integration-tests]
3333 steps :
3434 - name : Checkout Repository
3535 uses : actions/checkout@v4
3636 with :
3737 token : ${{ secrets.GITHUB_TOKEN }}
3838
39- - name : Setup JDK 8
39+ - name : Setup JDK 11
4040 uses : actions/setup-java@v4
4141 with :
42- distribution : ' corretto '
43- java-version : ' 1.8 '
42+ java-version : 11
43+ distribution : corretto
4444
4545 - name : Build and Test
4646 run : ./gradlew clean build
Original file line number Diff line number Diff line change @@ -15,11 +15,11 @@ jobs:
1515 - name : Checkout
1616 uses : actions/checkout@v4
1717
18- - name : Setup JDK 8
18+ - name : Setup JDK 11
1919 uses : actions/setup-java@v4
2020 with :
21- distribution : ' corretto '
22- java-version : ' 1.8 '
21+ java-version : 11
22+ distribution : corretto
2323
2424 - name : Clean and Build
2525 run : ./gradlew clean build
Original file line number Diff line number Diff line change 2828 uses : actions/checkout@v4
2929 with :
3030 ref : ${{ inputs.branch }}
31+ fetch-depth : 0
3132
3233 - name : Set up JDK
3334 uses : actions/setup-java@v4
You can’t perform that action at this time.
0 commit comments