We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94e6f84 commit e4475e5Copy full SHA for e4475e5
aws-crt-kotlin/build.gradle.kts
@@ -100,6 +100,14 @@ configureIosSimulatorTasks()
100
// Publishing
101
configurePublishing("aws-crt-kotlin")
102
103
+// Temporary disable signing iOS artifacts because they are having trouble finding the signing key/passphrase
104
+// which are set via environment variables. Maybe the environment is not passed through to iOS builds?
105
+tasks.withType<Sign>().configureEach {
106
+ if (name.contains("ios", ignoreCase = true)) {
107
+ enabled = false
108
+ }
109
+}
110
+
111
val linuxTargets: List<String> = listOf(
112
"linuxX64",
113
"linuxArm64",
0 commit comments