Skip to content

Commit 55bd9cc

Browse files
authored
fix: disable K/N builds in CI (#1673)
1 parent a3fc67d commit 55bd9cc

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

.github/workflows/continuous-integration.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,13 @@ jobs:
7070
uses: awslabs/aws-kotlin-repo-tools/.github/actions/configure-gradle@main
7171
with:
7272
working-directory: ./smithy-kotlin
73+
- name: Disable native builds # FIXME remove this step once K/N is merged
74+
shell: bash
75+
run: |
76+
echo "Appending aws.kotlin.native=false to smithy-kotlin/gradle.properties..."
77+
echo -e "\n\naws.kotlin.native=false" >> ./smithy-kotlin/gradle.properties
78+
echo "Appending aws.kotlin.native=false to aws-sdk-kotlin/gradle.properties..."
79+
echo -e "\n\naws.kotlin.native=false" >> ./aws-sdk-kotlin/gradle.properties
7380
- name: Build smithy-kotlin
7481
working-directory: ./smithy-kotlin
7582
shell: bash

0 commit comments

Comments
 (0)