spc-site/build.gradle.kts

94 lines
2.7 KiB
Plaintext
Raw Normal View History

2022-04-30 10:32:00 +03:00
import ru.mipt.npm.gradle.KScienceVersions
2022-06-30 20:51:57 +03:00
import space.kscience.snark.plugin.JSch
import space.kscience.snark.plugin.execute
import space.kscience.snark.plugin.uploadDirectory
import space.kscience.snark.plugin.useSession
2022-04-23 10:48:53 +03:00
plugins {
id("ru.mipt.npm.gradle.project")
id("ru.mipt.npm.gradle.jvm")
2022-06-30 20:51:57 +03:00
id("space.kscience.snark")
2022-04-30 10:32:00 +03:00
application
}
2022-04-23 10:48:53 +03:00
group = "ru.mipt.npm"
2022-06-26 13:14:57 +03:00
version = "0.1.0"
2022-04-23 10:48:53 +03:00
application {
2022-05-14 11:08:28 +03:00
mainClass.set("io.ktor.server.netty.EngineMain")
2022-04-23 10:48:53 +03:00
val isDevelopment: Boolean = project.ext.has("development")
2022-05-03 13:33:43 +03:00
applicationDefaultJvmArgs = listOf("-Dio.ktor.development=$isDevelopment", "-Xmx200M")
2022-04-23 10:48:53 +03:00
}
2022-06-30 20:51:57 +03:00
val snarkVersion by extra("0.1.0-dev-1")
2022-05-06 15:54:59 +03:00
val ktorVersion = KScienceVersions.ktorVersion
2022-04-30 10:32:00 +03:00
2022-04-23 10:48:53 +03:00
dependencies {
2022-06-30 20:51:57 +03:00
implementation("space.kscience:snark-ktor:$snarkVersion")
2022-04-30 10:32:00 +03:00
implementation("io.ktor:ktor-server-netty:$ktorVersion")
2022-06-23 11:02:26 +03:00
implementation("io.ktor:ktor-server-http-redirect:$ktorVersion")
2022-04-23 10:59:05 +03:00
2022-04-30 10:32:00 +03:00
testImplementation("io.ktor:ktor-server-tests:$ktorVersion")
2022-04-23 10:48:53 +03:00
}
kotlin {
explicitApi = org.jetbrains.kotlin.gradle.dsl.ExplicitApiMode.Disabled
2022-05-21 13:38:15 +03:00
}
2022-06-30 20:51:57 +03:00
apiValidation{
validationDisabled = true
}
2022-05-22 16:52:36 +03:00
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
kotlinOptions {
2022-05-21 13:38:15 +03:00
freeCompilerArgs = freeCompilerArgs + "-Xcontext-receivers"
2022-05-08 22:21:01 +03:00
}
2022-05-06 15:54:59 +03:00
}
sourceSets {
main {
resources.srcDir(project.rootDir.resolve("data"))
}
2022-05-24 21:39:01 +03:00
}
2022-06-19 14:18:44 +03:00
/* Upload with JSch */
2022-06-19 19:36:48 +03:00
val host = System.getenv("SPC_HOST")
val user = System.getenv("SPC_USER")
2022-06-20 11:55:18 +03:00
val identityString = System.getenv("SPC_ID")
val serviceName = "sciprog-site"
2022-06-19 14:18:44 +03:00
2022-06-20 11:55:18 +03:00
if (host != null && user != null || identityString != null) {
2022-06-19 14:18:44 +03:00
val uploadDistribution by tasks.creating {
group = "distribution"
dependsOn("installDist")
doLast {
2022-06-20 11:55:18 +03:00
JSch {
addIdentity("spc-webmaster", identityString.encodeToByteArray(), null, null)
}.useSession(host, user) {
//stopping service during the upload
execute("sudo systemctl stop $serviceName")
uploadDirectory(buildDir.resolve("install/spc-site"), "/opt")
//adding executable flag to the entry point
execute("sudo chmod +x /opt/spc-site/bin/spc-site")
execute("sudo systemctl start $serviceName")
2022-06-19 14:18:44 +03:00
}
}
}
val reloadDistribution by tasks.creating {
group = "distribution"
doLast {
2022-06-20 11:55:18 +03:00
JSch {
addIdentity("spc-webmaster", identityString.encodeToByteArray(), null, null)
}.useSession(host, user) {
execute("sudo systemctl restart $serviceName")
2022-06-19 14:18:44 +03:00
}
}
}
2022-06-19 19:36:48 +03:00
2022-06-20 11:55:18 +03:00
} else {
2022-06-20 11:05:13 +03:00
logger.error("Host, user or ID are not defined. Skipping deployment tasks.")
2022-06-19 14:18:44 +03:00
}