mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-07 17:34:34 +02:00
Last release builds was broken on those. The maintainer merged a patch to work-arround for now.
26 lines
838 B
Diff
26 lines
838 B
Diff
From beae21c6021d8a950aa3353488bce79e54e2b5e7 Mon Sep 17 00:00:00 2001
|
|
From: Zach Brown <zach@zachbr.io>
|
|
Date: Mon, 26 May 2025 15:26:15 -0500
|
|
Subject: [PATCH] Downgrade Kotlin to 2.1.10 to fix build issues on risc and
|
|
friends
|
|
|
|
See GH-86 for more info.
|
|
---
|
|
build.gradle.kts | 4 +++-
|
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/build.gradle.kts b/build.gradle.kts
|
|
index 958a52b..212569f 100644
|
|
--- a/build.gradle.kts
|
|
+++ b/build.gradle.kts
|
|
@@ -4,7 +4,9 @@ import org.gradle.api.JavaVersion
|
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
plugins {
|
|
- kotlin("jvm") version "2.1.20"
|
|
+ // Kotlin 2.1.20 causes build failures on riscv64 and other archs
|
|
+ // see GH-86.
|
|
+ kotlin("jvm") version "2.1.10"
|
|
|
|
id("org.cadixdev.licenser") version "0.6.1"
|
|
id("com.gradleup.shadow") version "8.3.5"
|