- Sort Score
- Num 10 results
- Language All
Results 1 - 6 of 6 for GITHUB_ACTIONS (0.26 seconds)
-
.github/dependabot.yml
target-branch: "maven-4.0.x" labels: - "mvn40" - "dependencies" - "github_actions" - package-ecosystem: "github-actions" directory: "/" schedule: interval: "daily" target-branch: "maven-3.9.x" labels: - "mvn3" - "dependencies" - "github_actions" - package-ecosystem: "github-actions" directory: "/" schedule: interval: "daily"Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Mar 25 06:48:29 GMT 2026 - 2.1K bytes - Click Count (0) -
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
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sun Apr 13 18:50:07 GMT 2025 - 1.7K bytes - Click Count (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 {
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sun Apr 13 18:50:07 GMT 2025 - 3.4K bytes - Click Count (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.Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Nov 19 15:45:22 GMT 2025 - 1.1K bytes - Click Count (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 {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Mar 25 08:51:12 GMT 2026 - 4.9K bytes - Click Count (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");Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 56K bytes - Click Count (0)