Skip to content

Commit a9b8ae5

Browse files
committed
debugging
1 parent 4bf546f commit a9b8ae5

File tree

1 file changed

+19
-15
lines changed

1 file changed

+19
-15
lines changed

.github/workflows/release-readiness.yml

Lines changed: 19 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,20 @@ jobs:
1616
with:
1717
path: 'aws-sdk-kotlin'
1818

19-
- name: Configure Gradle
20-
uses: awslabs/aws-kotlin-repo-tools/.github/actions/configure-gradle@main
21-
with:
22-
working-directory: ./aws-sdk-kotlin
23-
24-
- name: Build SDK
25-
working-directory: ./aws-sdk-kotlin
26-
run: ./gradlew test jvmTest
27-
28-
- name: Build SDK client
29-
working-directory: ./aws-sdk-kotlin
30-
run: |
31-
./gradlew -Paws.kotlin.native=false -Paws.services=s3 bootstrap
32-
./gradlew -Paws.kotlin.native=false build
19+
# - name: Configure Gradle
20+
# uses: awslabs/aws-kotlin-repo-tools/.github/actions/configure-gradle@main
21+
# with:
22+
# working-directory: ./aws-sdk-kotlin
23+
#
24+
# - name: Build SDK
25+
# working-directory: ./aws-sdk-kotlin
26+
# run: ./gradlew test jvmTest
27+
#
28+
# - name: Build SDK client
29+
# working-directory: ./aws-sdk-kotlin
30+
# run: |
31+
# ./gradlew -Paws.kotlin.native=false -Paws.services=s3 bootstrap
32+
# ./gradlew -Paws.kotlin.native=false build
3333

3434
- name: Checkout smithy-kotlin
3535
uses: awslabs/aws-kotlin-repo-tools/.github/actions/checkout-head@main
@@ -41,12 +41,16 @@ jobs:
4141
- name: Check for smithy-kotlin unreleased changes
4242
run: |
4343
cd aws-sdk-kotlin
44+
pwd
4445
SDK_BRANCH=$(git branch --show-current)
46+
echo $SDK_BRANCH
4547
4648
cd ../smithy-kotlin
49+
pwd
4750
SMITHY_BRANCH=$(git branch --show-current)
51+
echo $SMITHY_BRANCH
4852
49-
if [ "$SDK_BRANCH" = "$SMITHY_BRANCH" ]; then
53+
if [ "$SDK_BRANCH" == "$SMITHY_BRANCH" ]; then
5054
cd ../aws-sdk-kotlin
5155
git diff origin/main -- gradle/libs.versions.toml | grep -E "smithy-kotlin-runtime-version|smithy-kotlin-codegen-version"
5256
export SMITHY_KOTLIN_VERSION_BUMP=$($?)

0 commit comments

Comments
 (0)