Skip to content

Commit

Permalink
misc: build a service client during release checks (#1152)
Browse files Browse the repository at this point in the history
  • Loading branch information
lauzadis authored Dec 13, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent fb84076 commit 2f3d087
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/update-release-branch.yml
Original file line number Diff line number Diff line change
@@ -71,6 +71,14 @@ jobs:
# This should help prevent the cases where we forgot to bump smithy-kotlin versions and don't catch it
# because CI is masking it
./gradlew -Paws.kotlin.native=false test jvmTest
- name: Release Check - build an SDK client
if: env.MERGED_NEEDED == 'true'
shell: bash
run: |
# Additionally generate and build a service client to confirm that codegen and build works
# without "live at HEAD" mode.
./gradlew -Paws.services=s3 -Paws.kotlin.native=false bootstrap;
./gradlew -Paws.kotlin.native=false build;
- name: Merge
if: env.MERGE_NEEDED == 'true'
shell: bash

0 comments on commit 2f3d087

Please sign in to comment.