- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for CircleCI (0.11 seconds)
-
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/cisupport/CIDetectorHelperTest.java
void jenkins() throws Exception { assertEquals(JenkinsCIDetector.NAME + ";", runner(Map.of("CI", "true", "WORKSPACE", "foobar"))); } @Test void circleci() throws Exception { assertEquals(CircleCIDetector.NAME + ";", runner(Map.of("CIRCLECI", "true"))); } @Test void teamcity() throws Exception { assertEquals(TeamcityCIDetector.NAME + ";", runner(Map.of("TEAMCITY_VERSION", "1.2.3")));
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) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/cisupport/CircleCIDetector.java
/** * Circle CI support. */ public class CircleCIDetector implements CIDetector { public static final String NAME = "CircleCI"; private static final String CIRCLECI = "CIRCLECI"; @Override public Optional<CIInfo> detectCI() { String ciEnv = System.getenv(CIRCLECI); if ("true".equals(ciEnv)) { return Optional.of(new CIInfo() { @OverrideCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sun Apr 13 18:50:07 GMT 2025 - 1.5K bytes - Click Count (0) -
README.md
- **Continuous Integration**: Gradle easily connects with popular CI tools, including Jenkins, [GitHub Actions](https://docs.github.com/actions), [GitLab CI](https://docs.gitlab.com/ee/ci/), [CircleCI](https://circleci.com/), and more, to streamline build and deployment pipelines. --- ### 🎓 **Learning Resources for Gradle**
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Feb 12 18:58:41 GMT 2026 - 7.8K bytes - Click Count (0)