Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for git_fetch_latest (0.07 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/InternalBwcGitPlugin.java

            });
    
            TaskProvider<LoggedExec> fetchLatestTaskProvider = tasks.register("fetchLatest", LoggedExec.class, fetchLatest -> {
                var gitFetchLatest = project.getProviders()
                    .systemProperty("tests.bwc.git_fetch_latest")
                    .forUseAtConfigurationTime()
                    .orElse("true")
                    .map(fetchProp -> {
                        if ("true".equals(fetchProp)) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 9.9K bytes
    - Click Count (0)
  2. TESTING.asciidoc

    ==== Skip fetching latest
    
    For some BWC testing scenarios, you want to use the local clone of the
    repository without fetching latest. For these use cases, you can set the system
    property `tests.bwc.git_fetch_latest` to `false` and the BWC builds will skip
    fetching the latest from the remote.
    
    == Testing in FIPS 140-2 mode
    
    We have a CI matrix job that periodically runs all our tests with the JVM configured
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Jun 07 13:55:20 GMT 2021
    - 32.5K bytes
    - Click Count (0)
Back to Top