Skip to content

Commit 96618ce

Browse files
committed
Fix formatting
1 parent 2ffcb39 commit 96618ce

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/test-matrix-agp-gradle.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
gradle-version: ${{ matrix.gradle }}
7171

7272
- name: Build the Release variants and integrationTest
73-
run: gradle assembleRelease bundleRelease integrationTest
73+
run: gradle assembleRelease bundleRelease integrationTest --stacktrace
7474

7575
- name: Check sentry-debug-meta.properties inside APKs
7676
run: |

scripts/generate-compat-matrix.main.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,8 @@ class GenerateMatrix : CliktCommand() {
118118
val (finalMajor, finalMinor, finalPatch) = finalGradle
119119
put(
120120
"gradle",
121-
if (finalMajor < 9 && finalPatch == 0) "${finalMajor}.${finalMinor}" else finalGradle.toString(),
121+
if (finalMajor < 9 && finalPatch == 0) "${finalMajor}.${finalMinor}"
122+
else finalGradle.toString(),
122123
)
123124
// TODO: if needed we can test against different Java versions
124125
put("java", "17")
@@ -287,8 +288,7 @@ class GenerateMatrix : CliktCommand() {
287288
legacy: Boolean = false,
288289
): Pair<Map<Version, Version>, Version> {
289290
val gradleVersions = mutableMapOf<Version, Version>()
290-
val html =
291-
URL("https://developer.android.com/build/releases/about-agp").readText()
291+
val html = URL("https://developer.android.com/build/releases/about-agp").readText()
292292
val doc = Jsoup.parse(html)
293293
val tables = doc.select("table") ?: error("No table found")
294294
val table = if (legacy) tables[1] else tables[0]

0 commit comments

Comments
 (0)