From 8714cc83534f00e94c54f9caaa5b095823ada70e Mon Sep 17 00:00:00 2001 From: Maxim Pestryakov <17238054+MaximPestryakov@users.noreply.github.com> Date: Fri, 23 Jun 2023 12:40:07 -0500 Subject: [PATCH 1/2] [Kotlin] Fixed GH Action --- .github/workflows/kotlin-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/kotlin-ci.yml b/.github/workflows/kotlin-ci.yml index f22e812b7e5..e53e08d116b 100644 --- a/.github/workflows/kotlin-ci.yml +++ b/.github/workflows/kotlin-ci.yml @@ -48,7 +48,7 @@ jobs: if: steps.internal_cache.outputs.cache-hit != 'true' - name: Generate files - run: tools/generate-files android + run: tools/generate-files - name: Build Kotlin Multiplatform run: tools/kotlin-build From a84c229cb818357100b0b01be27848a2f20f35eb Mon Sep 17 00:00:00 2001 From: Satoshi Otomakan Date: Mon, 26 Jun 2023 09:12:59 +0200 Subject: [PATCH 2/2] Fix Kotlin CI with installing WASM deps --- .github/workflows/kotlin-ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/kotlin-ci.yml b/.github/workflows/kotlin-ci.yml index e53e08d116b..0d9c0571cb5 100644 --- a/.github/workflows/kotlin-ci.yml +++ b/.github/workflows/kotlin-ci.yml @@ -33,6 +33,9 @@ jobs: tools/install-sys-dependencies-mac tools/install-rust-dependencies + - name: Install emsdk + run: tools/install-wasm-dependencies + - name: Install Kotlin Dependencies run: tools/install-kotlin-dependencies @@ -48,7 +51,9 @@ jobs: if: steps.internal_cache.outputs.cache-hit != 'true' - name: Generate files - run: tools/generate-files + run: | + source emsdk/emsdk_env.sh + tools/generate-files - name: Build Kotlin Multiplatform run: tools/kotlin-build