mirror of
https://github.com/SagerNet/sing-box-for-android.git
synced 2025-04-03 20:07:38 +03:00
Read local properties in env for ci build
This commit is contained in:
parent
71b7a4e706
commit
90a0ba908e
1 changed files with 15 additions and 10 deletions
|
@ -147,18 +147,25 @@ tasks.withType(KotlinCompile.class).configureEach {
|
||||||
}
|
}
|
||||||
|
|
||||||
def getProps(String propName) {
|
def getProps(String propName) {
|
||||||
|
def propsInEnv = System.getenv("LOCAL_PROPERTIES")
|
||||||
|
if (propsInEnv != null) {
|
||||||
|
def props = new Properties()
|
||||||
|
props.load(new ByteArrayInputStream(Base64.decoder.decode(propsInEnv)))
|
||||||
|
String value = props[propName]
|
||||||
|
if (value != null) {
|
||||||
|
return value
|
||||||
|
}
|
||||||
|
}
|
||||||
def propsFile = rootProject.file("local.properties")
|
def propsFile = rootProject.file("local.properties")
|
||||||
if (propsFile.exists()) {
|
if (propsFile.exists()) {
|
||||||
def props = new Properties()
|
def props = new Properties()
|
||||||
props.load(new FileInputStream(propsFile))
|
props.load(new FileInputStream(propsFile))
|
||||||
String value = props[propName]
|
String value = props[propName]
|
||||||
if (value == null) {
|
if (value != null) {
|
||||||
return ""
|
return value
|
||||||
}
|
}
|
||||||
return value
|
|
||||||
} else {
|
|
||||||
return ""
|
|
||||||
}
|
}
|
||||||
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
def getVersionProps(String propName) {
|
def getVersionProps(String propName) {
|
||||||
|
@ -167,11 +174,9 @@ def getVersionProps(String propName) {
|
||||||
def props = new Properties()
|
def props = new Properties()
|
||||||
props.load(new FileInputStream(propsFile))
|
props.load(new FileInputStream(propsFile))
|
||||||
String value = props[propName]
|
String value = props[propName]
|
||||||
if (value == null) {
|
if (value != null) {
|
||||||
return ""
|
return value
|
||||||
}
|
}
|
||||||
return value
|
|
||||||
} else {
|
|
||||||
return ""
|
|
||||||
}
|
}
|
||||||
|
return ""
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue