Skip to content

Commit aa32150

Browse files
committed
chore(java): Full Java 17 support only
1 parent b6278e0 commit aa32150

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Build
4040
env:
4141
ORG_GRADLE_PROJECT_version: ${{ steps.build_variables.outputs.VERSION }}
42-
run: ./gradlew -PenableCrossCompilerPlugin=true build --stacktrace ${{ steps.build_variables.outputs.REPO }}-web:installDist
42+
run: ./gradlew build --stacktrace ${{ steps.build_variables.outputs.REPO }}-web:installDist
4343
- name: Build local slim container image for testing
4444
uses: docker/build-push-action@v6
4545
with:

.github/workflows/integration-tests-kubernetes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,4 @@ jobs:
6666
- name: Kubernetes Provider Integration Tests
6767
run: |
6868
version=$(echo '${{ matrix.kubernetes-image }}' | grep -o 'v[0-9]*\.[0-9]*')
69-
./gradlew -PenableCrossCompilerPlugin=true --build-cache :clouddriver-kubernetes:integrationTest -Pkubernetes-image=${{ matrix.kubernetes-image }} -Pkubectl-version=${{ matrix.kubectl-version }} -Pkubernetes-version=${version}
69+
./gradlew --build-cache :clouddriver-kubernetes:integrationTest -Pkubernetes-image=${{ matrix.kubernetes-image }} -Pkubectl-version=${{ matrix.kubectl-version }} -Pkubernetes-version=${version}

.github/workflows/integration_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ jobs:
4040
${{ runner.os }}-cd-it-${{ github.event.before }}
4141
# Separating integration tests by provider allows to have separate logs
4242
- name: Amazon ECS Provider Integration Tests
43-
run: ./gradlew -PenableCrossCompilerPlugin=true--build-cache --no-daemon :clouddriver-ecs:integrationTest
43+
run: ./gradlew --build-cache --no-daemon :clouddriver-ecs:integrationTest
4444
- name: Artifacts Integration Tests
45-
run: ./gradlew -PenableCrossCompilerPlugin=true --build-cache :clouddriver-artifacts:integrationTest
45+
run: ./gradlew --build-cache :clouddriver-artifacts:integrationTest
4646
- name: AWS EC2 Provider Integration Tests
47-
run: ./gradlew -PenableCrossCompilerPlugin=true --build-cache :clouddriver-aws:integrationTest
47+
run: ./gradlew --build-cache :clouddriver-aws:integrationTest

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Build
3434
env:
3535
ORG_GRADLE_PROJECT_version: ${{ steps.build_variables.outputs.VERSION }}
36-
run: ./gradlew -PenableCrossCompilerPlugin=true build ${{ steps.build_variables.outputs.REPO }}-web:installDist
36+
run: ./gradlew build ${{ steps.build_variables.outputs.REPO }}-web:installDist
3737
- name: Build slim container image
3838
uses: docker/build-push-action@v6
3939
with:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,14 +75,14 @@ jobs:
7575
ORG_GRADLE_PROJECT_nexusPgpSigningKey: ${{ secrets.NEXUS_PGP_SIGNING_KEY }}
7676
ORG_GRADLE_PROJECT_nexusPgpSigningPassword: ${{ secrets.NEXUS_PGP_SIGNING_PASSWORD }}
7777
run: |
78-
./gradlew -PenableCrossCompilerPlugin=true --info build ${{ steps.build_variables.outputs.REPO }}-web:installDist publishToNexus closeAndReleaseNexusStagingRepository
78+
./gradlew --info build ${{ steps.build_variables.outputs.REPO }}-web:installDist publishToNexus closeAndReleaseNexusStagingRepository
7979
- name: Publish apt packages to Google Artifact Registry
8080
env:
8181
ORG_GRADLE_PROJECT_version: ${{ steps.release_info.outputs.RELEASE_VERSION }}
8282
ORG_GRADLE_PROJECT_artifactRegistryPublishEnabled: true
8383
GAR_JSON_KEY: ${{ secrets.GAR_JSON_KEY }}
8484
run: |
85-
./gradlew -PenableCrossCompilerPlugin=true --info publish
85+
./gradlew --info publish
8686
- name: Login to Google Cloud
8787
# Only run this on repositories in the 'spinnaker' org, not on forks.
8888
if: startsWith(github.repository, 'spinnaker/')

0 commit comments

Comments
 (0)