xpipe/build.gradle

29 lines
711 B
Groovy
Raw Normal View History

2022-06-18 11:17:08 +12:00
plugins {
2023-01-27 15:34:46 +13:00
id "io.codearte.nexus-staging" version "0.30.0"
2022-06-18 11:17:08 +12:00
}
2023-01-27 15:34:46 +13:00
def getArchName() {
var arch = System.getProperty("os.arch").toLowerCase(Locale.ROOT)
if (arch == 'amd64' || arch == 'x86_64') {
return 'x86_64'
}
if (arch == 'arm' || arch == 'aarch64') {
return 'arm64'
}
if (arch == 'x86') {
return 'x86'
}
return arch
}
2023-01-27 15:34:46 +13:00
project.ext {
ci = System.getenv('CI') != null
os = org.gradle.internal.os.OperatingSystem.current()
fullVersion = file("$rootDir/private_files.txt").exists()
arch = getArchName()
privateExtensions = file("$rootDir/private_extensions.txt").exists() ? file("$rootDir/private_extensions.txt").readLines() : []
}