- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for GITHUB_ACTIONS (0.7 sec)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/cisupport/GithubCIDetector.java
public static final String NAME = "GitHub"; private static final String GITHUB_ACTIONS = "GITHUB_ACTIONS"; private static final String RUNNER_DEBUG = "RUNNER_DEBUG"; @Override public Optional<CIInfo> detectCI() { String ciEnv = System.getenv(GITHUB_ACTIONS); if ("true".equals(ciEnv)) { return Optional.of(new CIInfo() { @Override
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Apr 13 18:50:07 UTC 2025 - 1.7K bytes - Viewed (0) -
docs/releasing.md
"s/version = \".*\"/version = \"$NEXT_VERSION\"/g" \ build.gradle.kts git commit -am "Prepare next development version." git push ``` 4. Wait for [GitHub Actions][github_actions] to build and promote the release.Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Wed Nov 19 15:45:22 UTC 2025 - 1.1K bytes - Viewed (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/cisupport/CIDetectorHelperTest.java
void github() throws Exception { assertEquals(GithubCIDetector.NAME + ";", runner(Map.of("CI", "true", "GITHUB_ACTIONS", "true"))); } @Test void githubDebug() throws Exception { assertEquals( GithubCIDetector.NAME + "+VERBOSE;", runner(Map.of("CI", "true", "GITHUB_ACTIONS", "true", "RUNNER_DEBUG", "1"))); } @Test void travis() throws Exception {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Apr 13 18:50:07 UTC 2025 - 3.4K bytes - Viewed (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt
"CODEQL_RUNNER" ) private val architecture = System.getProperty("os.arch").lowercase() val isCiServer = CI_ENVIRONMENT_VARIABLE in System.getenv() val isGhActions = "GITHUB_ACTIONS" in System.getenv() val isTeamCity = "TEAMCITY_VERSION" in System.getenv() val isTeamCityParallelTestsEnabled get() = "TEAMCITY_PARALLEL_TESTS_ENABLED" in System.getenv() val isCodeQl: Boolean by lazy {
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Sat Dec 21 08:58:33 UTC 2024 - 4.7K bytes - Viewed (1) -
src/test/java/jcifs/smb/SmbFileIntegrationTest.java
try { // Check if we're in CI environment (GitHub Actions specifically) String ci = System.getenv("CI"); String githubActions = System.getenv("GITHUB_ACTIONS"); boolean isCI = "true".equals(ci) || "true".equals(githubActions); // First, check if docker command is available ProcessBuilder pb = new ProcessBuilder("docker", "--version");Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 56K bytes - Viewed (0)