Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TRAVIS (0.03 sec)

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/cisupport/TravisCIDetector.java

    /**
     * Travis CI support.
     */
    public class TravisCIDetector implements CIDetector {
        public static final String NAME = "Travis";
    
        private static final String TRAVIS = "TRAVIS";
        private static final String TRAVIS_DEBUG_MODE = "TRAVIS_DEBUG_MODE";
    
        @Override
        public Optional<CIInfo> detectCI() {
            String ciEnv = System.getenv(TRAVIS);
            if ("true".equals(ciEnv)) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Apr 13 18:50:07 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  2. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/cisupport/CIDetectorHelperTest.java

        }
    
        @Test
        void travis() throws Exception {
            assertEquals(TravisCIDetector.NAME + ";", runner(Map.of("TRAVIS", "true")));
        }
    
        @Test
        void travisDebug() throws Exception {
            assertEquals(
                    TravisCIDetector.NAME + "+VERBOSE;", runner(Map.of("TRAVIS", "true", "TRAVIS_DEBUG_MODE", "true")));
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Apr 13 18:50:07 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  3. docs/en/docs/release-notes.md

    * Add XML test coverage to support GitHub Actions. PR [#1737](https://github.com/tiangolo/fastapi/pull/1737).
    * Update badges and remove Travis now that GitHub Actions is the main CI. PR [#1736](https://github.com/tiangolo/fastapi/pull/1736).
    * Add GitHub Actions for CI, move from Travis. PR [#1735](https://github.com/tiangolo/fastapi/pull/1735).
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 19:06:15 UTC 2025
    - 586.7K bytes
    - Viewed (0)
Back to top