All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jtransc.env.ci.kt Maven / Gradle / Ivy

package com.jtransc.env

object CI {
	val isOnCiSystem by lazy {
		listOf("CI", "TRAVIS", "APPVEYOR")
			.map { (System.getenv(it) ?: "").toLowerCase() }
			.any { it in listOf("true", "yes") }
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy