This repository was archived by the owner on Dec 20, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 7 files changed +18
-15
lines changed
Expand file tree Collapse file tree 7 files changed +18
-15
lines changed Original file line number Diff line number Diff line change 2525 uses : docker/setup-buildx-action@v3
2626 - uses : actions/setup-java@v4
2727 with :
28- java-version : 11
28+ java-version : |
29+ 17
30+ 11
2931 distribution : ' zulu'
3032 cache : ' gradle'
3133 - name : Prepare build variables
3638 - name : Build
3739 env :
3840 ORG_GRADLE_PROJECT_version : ${{ steps.build_variables.outputs.VERSION }}
39- run : ./gradlew build --stacktrace ${{ steps.build_variables.outputs.REPO }}-web:installDist
41+ run : ./gradlew -PenableCrossCompilerPlugin=true build --stacktrace ${{ steps.build_variables.outputs.REPO }}-web:installDist
4042 - name : Build local slim container image for testing
4143 uses : docker/build-push-action@v6
4244 with :
Original file line number Diff line number Diff line change 1919 uses : docker/setup-buildx-action@v3
2020 - uses : actions/setup-java@v4
2121 with :
22- java-version : 11
22+ java-version : |
23+ 17
24+ 11
2325 distribution : ' zulu'
2426 cache : ' gradle'
2527 - name : Prepare build variables
3032 - name : Build
3133 env :
3234 ORG_GRADLE_PROJECT_version : ${{ steps.build_variables.outputs.VERSION }}
33- run : ./gradlew build ${{ steps.build_variables.outputs.REPO }}-web:installDist
35+ run : ./gradlew -PenableCrossCompilerPlugin=true build ${{ steps.build_variables.outputs.REPO }}-web:installDist
3436 - name : Build slim container image
3537 uses : docker/build-push-action@v6
3638 with :
Original file line number Diff line number Diff line change 2323 uses : docker/setup-buildx-action@v3
2424 - uses : actions/setup-java@v4
2525 with :
26- java-version : 11
26+ java-version : |
27+ 17
28+ 11
2729 distribution : ' zulu'
2830 cache : ' gradle'
2931 - name : Assemble release info
@@ -50,14 +52,14 @@ jobs:
5052 ORG_GRADLE_PROJECT_nexusPgpSigningKey : ${{ secrets.NEXUS_PGP_SIGNING_KEY }}
5153 ORG_GRADLE_PROJECT_nexusPgpSigningPassword : ${{ secrets.NEXUS_PGP_SIGNING_PASSWORD }}
5254 run : |
53- ./gradlew --info build ${{ steps.build_variables.outputs.REPO }}-web:installDist publishToNexus closeAndReleaseNexusStagingRepository
55+ ./gradlew -PenableCrossCompilerPlugin=true - -info build ${{ steps.build_variables.outputs.REPO }}-web:installDist publishToNexus closeAndReleaseNexusStagingRepository
5456 - name : Publish apt packages to Google Artifact Registry
5557 env :
5658 ORG_GRADLE_PROJECT_version : ${{ steps.release_info.outputs.RELEASE_VERSION }}
5759 ORG_GRADLE_PROJECT_artifactRegistryPublishEnabled : true
5860 GAR_JSON_KEY : ${{ secrets.GAR_JSON_KEY }}
5961 run : |
60- ./gradlew --info publish
62+ ./gradlew -PenableCrossCompilerPlugin=true - -info publish
6163 - name : Login to GAR
6264 # Only run this on repositories in the 'spinnaker' org, not on forks.
6365 if : startsWith(github.repository, 'spinnaker/')
Original file line number Diff line number Diff line change 11FROM ubuntu:bionic
22RUN apt-get update && apt-get install -y \
3- openjdk-11 -jdk \
3+ openjdk-17 -jdk \
44 && rm -rf /var/lib/apt/lists/*
55LABEL maintainer="sig-platform@spinnaker.io"
66ENV GRADLE_USER_HOME /workspace/.gradle
Original file line number Diff line number Diff line change 1- FROM alpine :3.11
1+ FROM python :3.7-alpine3.16
22LABEL maintainer =" sig-platform@spinnaker.io"
33ARG TARGETARCH
44
@@ -9,13 +9,10 @@ ENV AWS_CLI_VERSION=1.18.18
99RUN apk --no-cache add --update \
1010 bash \
1111 curl \
12- openjdk11 -jre \
12+ openjdk17 -jre \
1313 openssl \
14- py-pip \
15- python \
1614 && pip install --upgrade awscli==${AWS_CLI_VERSION} \
1715 && apk --purge del \
18- py-pip \
1916 && rm -rf /var/cache/apk
2017
2118RUN echo '#!/usr/bin/env bash' > /usr/local/bin/hal && \
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ ENV AWS_CLI_VERSION=1.18.18
99RUN apt-get update && \
1010 apt-get upgrade -y && \
1111 apt-get install -y \
12- openjdk-11 -jre-headless \
12+ openjdk-17 -jre-headless \
1313 curl \
1414 python-pip && \
1515 rm -rf /var/lib/apt/lists/* && \
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ fiatVersion=1.50.0
44front50Version =2.35.0
55org.gradle.parallel =true
66spinnakerGradleVersion =8.32.1
7- targetJava11 = true
7+ targetJava17 = false
88
99# To enable a composite reference to a project, set the
1010# project property `'<projectName>Composite=true'`.
You can’t perform that action at this time.
0 commit comments