xpipe/dist/build.gradle

109 lines
3.2 KiB
Groovy
Raw Normal View History

2023-01-27 15:34:46 +13:00
plugins {
id 'org.beryx.jlink' version '3.0.1'
2024-03-21 18:28:19 +13:00
id "org.asciidoctor.jvm.convert" version "4.0.2"
2023-09-27 13:47:51 +13:00
id 'org.jreleaser' version '1.8.0'
2024-03-21 19:14:50 +13:00
id("com.netflix.nebula.ospackage") version "11.8.1"
2023-10-06 04:19:48 +13:00
id 'org.gradle.crypto.checksum' version '1.4.0'
2024-03-21 17:48:05 +13:00
id 'signing'
2023-01-27 15:34:46 +13:00
}
repositories {
mavenCentral()
}
task dist(type: DefaultTask) {}
distTar {
enabled = false;
}
distZip {
enabled = false;
}
2024-01-03 22:15:53 +13:00
2023-10-06 04:58:54 +13:00
import org.gradle.crypto.checksum.Checksum
2024-01-03 22:15:53 +13:00
import java.util.stream.Collectors
2023-10-06 04:58:54 +13:00
def distDir = layout.buildDirectory.get().dir('dist')
task createChecksums(type: Checksum) {
inputFiles.setFrom(distDir.dir('artifacts').getAsFileTree().files)
2024-01-03 22:15:53 +13:00
outputDirectory.set(layout.buildDirectory.dir("dist/checksums/artifacts"))
2023-10-06 04:58:54 +13:00
checksumAlgorithm.set(Checksum.Algorithm.SHA256)
doLast {
2024-01-03 22:15:53 +13:00
def artifactChecksumsSha256Hex = new HashMap<String, String>()
for (final def file in outputDirectory.get().getAsFileTree().files) {
2024-03-21 17:48:05 +13:00
if (file.toString().endsWith('mapping.map') || file.toString().endsWith('.asc')) {
2024-01-19 06:15:35 +13:00
continue
}
2024-01-03 22:15:53 +13:00
def name = file.name.lastIndexOf('.').with {it != -1 ? file.name[0..<it] : file.name}
artifactChecksumsSha256Hex.put(name, file.text.trim())
2023-10-06 04:58:54 +13:00
}
2024-01-03 22:15:53 +13:00
file(layout.buildDirectory.dir("dist/checksums/sha256sums.txt")).text = artifactChecksumsSha256Hex.entrySet().stream()
.map(e -> e.getValue() + ' ' + e.getKey())
.collect(Collectors.joining('\n'))
2023-10-06 04:58:54 +13:00
}
}
2023-10-16 23:53:32 +13:00
2024-01-04 07:56:33 +13:00
def getArtifactChecksumSha256Hex(String name) {
var file = layout.buildDirectory.file("dist/checksums/artifacts/${name}.sha256")
return file.get().getAsFile().exists() ? file.get().getAsFile().text : "";
}
def getArtifactChecksumSha256Base64(String name) {
return Base64.getEncoder().encodeToString(HexFormat.of().parseHex(getArtifactChecksumSha256Hex(name)))
}
2023-10-16 23:53:32 +13:00
clean {
doFirst {
// Fix clean failing when file is read-only
if (file("$distDir").exists()) {
file("$distDir").traverse { f -> if (f.exists() && f.isFile()) f.writable = true }
}
}
}
2023-01-27 15:34:46 +13:00
apply from: 'base.gradle'
apply from: 'jpackage.gradle'
if (rootProject.fullVersion) {
2023-02-11 07:35:32 +13:00
apply from: 'cli.gradle'
2023-01-27 15:34:46 +13:00
apply from: 'portable.gradle'
apply from: 'proguard.gradle'
if (org.gradle.internal.os.OperatingSystem.current().isLinux()) {
apply from: 'linux_packages.gradle'
} else if (org.gradle.internal.os.OperatingSystem.current().isWindows()) {
apply from: 'msi.gradle'
} else if (org.gradle.internal.os.OperatingSystem.current().isMacOsX()) {
apply from: 'pkg.gradle'
}
2023-10-06 04:58:54 +13:00
apply from: 'jreleaser.gradle'
apply from: 'aur.gradle'
apply from: 'nix.gradle'
apply from: 'choco.gradle'
2024-03-09 16:56:54 +13:00
apply from: 'winget.gradle'
apply from: 'install.gradle'
2024-03-21 17:48:05 +13:00
signing {
useInMemoryPgpKeys(signingKeyId, signingKey, signingPassword)
}
task signArtifacts(type: Sign) {
def dir = layout.buildDirectory.dir("dist/artifacts").get()
dir.asFileTree.files.forEach {sign(it)}
}
task signChecksums(type: Sign) {
def checksums = layout.buildDirectory.file("dist/checksums/sha256sums.txt").get().asFile
sign(checksums)
}
2023-10-06 04:19:48 +13:00
}