File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 39
39
- name : Build
40
40
env :
41
41
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
43
43
- name : Build local slim container image for testing
44
44
uses : docker/build-push-action@v6
45
45
with :
Original file line number Diff line number Diff line change 66
66
- name : Kubernetes Provider Integration Tests
67
67
run : |
68
68
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}
Original file line number Diff line number Diff line change 40
40
${{ runner.os }}-cd-it-${{ github.event.before }}
41
41
# Separating integration tests by provider allows to have separate logs
42
42
- 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
44
44
- name : Artifacts Integration Tests
45
- run : ./gradlew -PenableCrossCompilerPlugin=true - -build-cache :clouddriver-artifacts:integrationTest
45
+ run : ./gradlew --build-cache :clouddriver-artifacts:integrationTest
46
46
- name : AWS EC2 Provider Integration Tests
47
- run : ./gradlew -PenableCrossCompilerPlugin=true - -build-cache :clouddriver-aws:integrationTest
47
+ run : ./gradlew --build-cache :clouddriver-aws:integrationTest
Original file line number Diff line number Diff line change 33
33
- name : Build
34
34
env :
35
35
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
37
37
- name : Build slim container image
38
38
uses : docker/build-push-action@v6
39
39
with :
Original file line number Diff line number Diff line change @@ -75,14 +75,14 @@ jobs:
75
75
ORG_GRADLE_PROJECT_nexusPgpSigningKey : ${{ secrets.NEXUS_PGP_SIGNING_KEY }}
76
76
ORG_GRADLE_PROJECT_nexusPgpSigningPassword : ${{ secrets.NEXUS_PGP_SIGNING_PASSWORD }}
77
77
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
79
79
- name : Publish apt packages to Google Artifact Registry
80
80
env :
81
81
ORG_GRADLE_PROJECT_version : ${{ steps.release_info.outputs.RELEASE_VERSION }}
82
82
ORG_GRADLE_PROJECT_artifactRegistryPublishEnabled : true
83
83
GAR_JSON_KEY : ${{ secrets.GAR_JSON_KEY }}
84
84
run : |
85
- ./gradlew -PenableCrossCompilerPlugin=true - -info publish
85
+ ./gradlew --info publish
86
86
- name : Login to Google Cloud
87
87
# Only run this on repositories in the 'spinnaker' org, not on forks.
88
88
if : startsWith(github.repository, 'spinnaker/')
You can’t perform that action at this time.
0 commit comments