Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 19 for distroId (0.06 seconds)

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

        private static String destructiveDistroTestTaskName(ElasticsearchDistribution distro) {
            ElasticsearchDistributionType type = distro.getType();
            return "destructiveDistroTest." + distroId(type, distro.getPlatform(), distro.getBundledJdk(), distro.getArchitecture());
        }
    
        private static String destructiveDistroUpgradeTestTaskName(ElasticsearchDistribution distro, String bwcVersion) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Sep 28 21:31:21 GMT 2021
    - 23.1K bytes
    - Click Count (0)
  2. build-tools-internal/src/test/java/org/elasticsearch/gradle/AbstractDistributionDownloadPluginTests.java

            return distros.create(name, distro -> {
                if (version != null) {
                    distro.setVersion(version);
                }
                if (type != null) {
                    distro.setType(type);
                }
                if (platform != null) {
                    distro.setPlatform(platform);
                }
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 22 07:24:59 GMT 2021
    - 4.7K bytes
    - Click Count (0)
  3. build-tools-internal/src/test/java/org/elasticsearch/gradle/DistributionDownloadPluginTests.java

            );
        }
    
        public void testTypeDefault() {
            ElasticsearchDistribution distro = checkDistro(createProject(null), "testdistro", "5.0.0", null, Platform.LINUX, true);
            assertEquals(distro.getType(), ElasticsearchDistributionTypes.ARCHIVE);
        }
    
        public void testPlatformDefault() {
            ElasticsearchDistribution distro = checkDistro(
                createProject(null),
                "testdistro",
                "5.0.0",
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 22 07:24:59 GMT 2021
    - 6.4K bytes
    - Click Count (0)
  4. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/InternalDistributionDownloadPluginFuncTest.groovy

                }
    
                // expanded distro
                configurations.create("expanded-${testArchiveProjectName}")
                def expandedTask = tasks.register("buildBwcExpandedTask", Copy) {
                    from('bwc-marker.txt')
                    into('build/install/elastic-distro')
                }
                artifacts {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 6.7K bytes
    - Click Count (0)
  5. build-tools-internal/src/main/groovy/elasticsearch.build-complete.gradle

                include("**/build/test-results/**/*.xml")
                include("**/build/testclusters/**")
                exclude("**/build/testclusters/**/data/**")
                exclude("**/build/testclusters/**/distro/**")
                exclude("**/build/testclusters/**/repo/**")
                exclude("**/build/testclusters/**/extract/**")
              }
                .files
                .findAll { Files.isRegularFile(it.toPath()) }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 2K bytes
    - Click Count (0)
  6. build-logic-commons/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts

            }
        }
    }
    
    /**
     * Tasks that are called by the (currently separate) promotion build running on CI.
     */
    tasks.register("promotionBuild") {
        description = "Build production distros, smoke test them and publish"
        group = "publishing"
        dependsOn(":packageBuild", "publish")
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Oct 30 16:56:31 GMT 2025
    - 5.7K bytes
    - Click Count (0)
  7. build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/info/ParallelDetector.java

            if (_defaultParallel == null) {
                File cpuInfoFile = new File("/proc/cpuinfo");
                if (cpuInfoFile.exists()) {
                    // Count physical cores on any Linux distro ( don't count hyper-threading )
                    Map<String, Integer> socketToCore = new HashMap<>();
                    String currentID = "";
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Aug 09 07:39:30 GMT 2021
    - 3.6K bytes
    - Click Count (0)
  8. build-tools-internal/build.gradle

      automatedPublishing = false
      plugins {
        build {
          id = 'elasticsearch.build'
          implementationClass = 'org.elasticsearch.gradle.internal.BuildPlugin'
        }
        distroTest {
          id = 'elasticsearch.distro-test'
          implementationClass = 'org.elasticsearch.gradle.internal.test.DistroTestPlugin'
        }
        dockerSupport {
          id = 'elasticsearch.docker-support'
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 13 18:10:22 GMT 2021
    - 11.3K bytes
    - Click Count (0)
  9. apache-maven/pom.xml

          </plugin>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-assembly-plugin</artifactId>
            <executions>
              <execution>
                <id>create-distro-packages</id>
                <goals>
                  <goal>single</goal>
                </goals>
                <phase>package</phase>
                <configuration>
                  <descriptors>
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jan 30 07:38:30 GMT 2026
    - 13K bytes
    - Click Count (0)
  10. README.md

    Quick Build
    -------
    If you want to bootstrap Maven, you'll need:
    - Java 17+
    - Maven 3.9.0 or later
    - Run Maven, specifying a location into which the completed Maven distro should be installed:
        ```
        mvn -DdistributionTargetDir="$HOME/app/maven/apache-maven-4.1.x-SNAPSHOT" clean package
        ```
    
    
    [home]: https://maven.apache.org/
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Mar 25 08:06:02 GMT 2026
    - 5.9K bytes
    - Click Count (0)
Back to Top