We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb84076 commit 2f3d087Copy full SHA for 2f3d087
.github/workflows/update-release-branch.yml
@@ -71,6 +71,14 @@ jobs:
71
# This should help prevent the cases where we forgot to bump smithy-kotlin versions and don't catch it
72
# because CI is masking it
73
./gradlew -Paws.kotlin.native=false test jvmTest
74
+ - name: Release Check - build an SDK client
75
+ if: env.MERGED_NEEDED == 'true'
76
+ shell: bash
77
+ run: |
78
+ # Additionally generate and build a service client to confirm that codegen and build works
79
+ # without "live at HEAD" mode.
80
+ ./gradlew -Paws.services=s3 -Paws.kotlin.native=false bootstrap;
81
+ ./gradlew -Paws.kotlin.native=false build;
82
- name: Merge
83
if: env.MERGE_NEEDED == 'true'
84
shell: bash
0 commit comments