Skip to content

Commit db99e5e

Browse files
committed
chore: fix github action builds
1 parent 94d7922 commit db99e5e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ jobs:
8080
id: gradle-build
8181
run: |
8282
./gradlew ciBuild
83-
ls -ltrh backend/build/distributions
8483
echo "dist_path=$(ls -1 backend/build/distributions/*.zip | head -n 1)" >> "$GITHUB_OUTPUT"
8584
echo "dist_name=$(ls -1 backend/build/distributions/*.zip | head -n 1 | xargs basename)" >> "$GITHUB_OUTPUT"
8685
env:

gradle/build-logic/common-plugins/src/main/kotlin/plugins/common.gradle.kts

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,10 +97,10 @@ tasks {
9797
logger.quiet(
9898
"""
9999
|Application modules for OpenJDK-${java.toolchain.languageVersion.get()} are,
100-
|${modules.split(",")
101-
.mapIndexed {i, module -> " ${(i+1).toString().padStart(2)}) $module" }
102-
.joinToString(System.lineSeparator())
103-
}
100+
|${
101+
modules.split(",").mapIndexed { i, module -> " ${(i + 1).toString().padStart(2)}) $module" }
102+
.joinToString(System.lineSeparator())
103+
}
104104
"""
105105
.trimMargin())
106106
}
@@ -185,7 +185,8 @@ tasks {
185185

186186
register("ciBuild") {
187187
description = "Build with all the reports!"
188-
dependsOn(tasks.build, "koverHtmlReport", "dokkaHtmlMultiModule")
188+
dependsOn(
189+
tasks.build, ":web:build", ":backend:build", "koverHtmlReport", "dokkaHtmlMultiModule")
189190
named("koverHtmlReport").map { it.mustRunAfter(tasks.build) }
190191
named("dokkaHtmlMultiModule").map { it.mustRunAfter(tasks.build) }
191192
}

0 commit comments

Comments
 (0)