fix(ci): exclude kotlinNativeBundleConfiguration from flatpak source generation (#5517)

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
James Rich
2026-05-19 19:03:51 -07:00
committed by GitHub
parent f5e5fb6da6
commit e13a4359e1
7 changed files with 13 additions and 1 deletions
+1
View File
@@ -58,6 +58,7 @@ tasks.flatpakGradleGenerator {
"androidHostTestCompileClasspath",
"androidHostTestLintChecksClasspath",
"androidHostTestRuntimeClasspath",
"kotlinNativeBundleConfiguration",
"testCompileClasspath",
"testRuntimeClasspath",
),
+1
View File
@@ -49,6 +49,7 @@ tasks.flatpakGradleGenerator {
"androidHostTestCompileClasspath",
"androidHostTestLintChecksClasspath",
"androidHostTestRuntimeClasspath",
"kotlinNativeBundleConfiguration",
"testCompileClasspath",
"testRuntimeClasspath",
),
+1
View File
@@ -93,6 +93,7 @@ tasks.flatpakGradleGenerator {
"androidDeviceTestLintChecksClasspath",
"androidDeviceTestCompileClasspath",
"androidCompileClasspath",
"kotlinNativeBundleConfiguration",
"testCompileClasspath",
"testRuntimeClasspath",
),
+1
View File
@@ -85,6 +85,7 @@ tasks.flatpakGradleGenerator {
"androidDeviceTestLintChecksClasspath",
"androidDeviceTestCompileClasspath",
"androidCompileClasspath",
"kotlinNativeBundleConfiguration",
"testCompileClasspath",
"testRuntimeClasspath",
),
+1
View File
@@ -50,6 +50,7 @@ tasks.flatpakGradleGenerator {
"androidDeviceTestLintChecksClasspath",
"androidDeviceTestCompileClasspath",
"androidCompileClasspath",
"kotlinNativeBundleConfiguration",
"testCompileClasspath",
"testRuntimeClasspath",
),
+7 -1
View File
@@ -137,5 +137,11 @@ publishing {
tasks.flatpakGradleGenerator {
outputFile = file("../../flatpak-sources-core-proto.json")
downloadDirectory.set("./offline-repository")
excludeConfigurations.set(listOf("testCompileClasspath", "testRuntimeClasspath"))
excludeConfigurations.set(
listOf(
"kotlinNativeBundleConfiguration",
"testCompileClasspath",
"testRuntimeClasspath",
),
)
}
+1
View File
@@ -80,6 +80,7 @@ tasks.flatpakGradleGenerator {
"androidHostTestCompileClasspath",
"androidHostTestLintChecksClasspath",
"androidHostTestRuntimeClasspath",
"kotlinNativeBundleConfiguration",
"testCompileClasspath",
"testRuntimeClasspath",
),