Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for CIRCLECI (0.05 seconds)

  1. 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() {
                    @Override
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sun Apr 13 18:50:07 GMT 2025
    - 1.5K bytes
    - Click Count (0)
  2. 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 Dec 28 03:35:09 GMT 2025
    - Last Modified: Sun Apr 13 18:50:07 GMT 2025
    - 3.4K bytes
    - Click Count (0)
  3. 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 Dec 31 11:36:14 GMT 2025
    - Last Modified: Mon Oct 20 22:15:26 GMT 2025
    - 7.8K bytes
    - Click Count (0)
Back to Top