Skip to content

Commit 4ccc6fa

Browse files
committed
fixup! fixup! fixup! ci: Build kotlin delivery pipeline
1 parent 1430ad9 commit 4ccc6fa

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/kotlin.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ jobs:
2828
- uses: dtolnay/[email protected]
2929
with:
3030
targets: x86_64-linux-android, aarch64-linux-android, armv7-linux-androideabi, i686-linux-android, aarch64-apple-ios, aarch64-apple-ios-sim, x86_64-apple-ios
31+
32+
- name: Install Protoc
33+
uses: arduino/setup-protoc@v3
3134

3235
- name: Setup Task
3336
run: |
@@ -39,7 +42,7 @@ jobs:
3942
4043
- name: "Build Kotlin Multiplatform bindings"
4144
run: |
42-
/usr/local/bin/task kotlin-multiplatform
45+
/usr/local/bin/task build:android
4346
4447
- name: "Build Android library"
4548
working-directory: libs/gl-sdk-android

Taskfile.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,3 @@ tasks:
7272
cmds:
7373
- cargo clean
7474
- rm -rf .venv
75-
76-
kotlin-multiplatform:
77-
cmds:
78-
- echo DUMMY BUILD

libs/gl-sdk-android/lib/build.gradle.kts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,10 @@ kotlin {
2020
jvm()
2121

2222
val xcf = XCFramework()
23+
/*
2324
listOf(
24-
iosArm64(),
25-
iosSimulatorArm64()
25+
//iosArm64(),
26+
//iosSimulatorArm64()
2627
).forEach {
2728
2829
it.binaries.framework {
@@ -44,7 +45,7 @@ kotlin {
4445
}
4546
}
4647
}
47-
48+
*/
4849
compilerOptions.freeCompilerArgs.add("-Xexpect-actual-classes")
4950

5051
sourceSets {

0 commit comments

Comments
 (0)