Skip to content

Commit 2f3d087

Browse files
authored
misc: build a service client during release checks (#1152)
1 parent fb84076 commit 2f3d087

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/update-release-branch.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,14 @@ jobs:
7171
# This should help prevent the cases where we forgot to bump smithy-kotlin versions and don't catch it
7272
# because CI is masking it
7373
./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;
7482
- name: Merge
7583
if: env.MERGE_NEEDED == 'true'
7684
shell: bash

0 commit comments

Comments
 (0)