Skip to content

Commit 2e9fe71

Browse files
committed
Disable KMP for protocol-tests and downstream
1 parent 42b0453 commit 2e9fe71

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,8 @@ jobs:
152152
working-directory: ./smithy-kotlin
153153
shell: bash
154154
run: |
155-
./gradlew publishToMavenLocal
156-
./gradlew testAllProtocols
155+
./gradlew -Paws.kotlin.native=false publishToMavenLocal
156+
./gradlew -Paws.kotlin.native=false testAllProtocols
157157
158158
downstream:
159159
runs-on: ubuntu-latest
@@ -175,7 +175,7 @@ jobs:
175175
run: |
176176
# TODO - JVM only
177177
cd $GITHUB_WORKSPACE/smithy-kotlin
178-
./gradlew --parallel publishToMavenLocal
178+
./gradlew --parallel -Paws.kotlin.native=false publishToMavenLocal
179179
SMITHY_KOTLIN_RUNTIME_VERSION=$(grep sdkVersion= gradle.properties | cut -d = -f 2)
180180
SMITHY_KOTLIN_CODEGEN_VERSION=$(grep codegenVersion= gradle.properties | cut -d = -f 2)
181181
cd $GITHUB_WORKSPACE/aws-sdk-kotlin
@@ -186,6 +186,6 @@ jobs:
186186
# smithy-kotlin should be
187187
sed -i "s/smithy-kotlin-runtime-version = .*$/smithy-kotlin-runtime-version = \"$SMITHY_KOTLIN_RUNTIME_VERSION\"/" gradle/libs.versions.toml
188188
sed -i "s/smithy-kotlin-codegen-version = .*$/smithy-kotlin-codegen-version = \"$SMITHY_KOTLIN_CODEGEN_VERSION\"/" gradle/libs.versions.toml
189-
./gradlew --parallel publishToMavenLocal
190-
./gradlew test jvmTest
191-
./gradlew testAllProtocols
189+
./gradlew --parallel -Paws.kotlin.native=false publishToMavenLocal
190+
./gradlew -Paws.kotlin.native=false test jvmTest
191+
./gradlew -Paws.kotlin.native=false testAllProtocols

0 commit comments

Comments
 (0)