Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 10 for BUILD_NUMBER (0.28 seconds)

  1. .ci/jobs.t/elastic+elasticsearch+multijob+platform-support-windows.yml

        project-type: matrix
        node: master
        # Use a hard-coded workspace directory to avoid hitting file path limits with auto-generated workspace path
        child-workspace: "C:\\Users\\jenkins\\workspace\\platform-support\\${BUILD_NUMBER}"
        scm:
          - git:
              wipe-workspace: false
        axes:
          - axis:
              type: label-expression
              name: os
              values:
                - "windows-2012-r2"
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Jun 09 01:50:21 GMT 2021
    - 1.7K bytes
    - Click Count (0)
  2. .ci/jobs.t/elastic+elasticsearch+pull-request+packaging-tests-windows.yml

        # We use a hard-coded workspace directory here to avoid hitting windows path length limits
        child-workspace: "C:\\Users\\jenkins\\workspace\\pr-packaging-windows\\${BUILD_NUMBER}"
        project-type: matrix
        node: master
        scm:
          - git:
              refspec: "+refs/pull/${ghprbPullId}/*:refs/remotes/origin/pr/${ghprbPullId}/*"
              branches:
                - "${ghprbActualCommit}"
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Aug 24 18:50:27 GMT 2021
    - 2.1K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/groovy/elasticsearch.build-complete.gradle

     * in compliance with, at your election, the Elastic License 2.0 or the Server
     * Side Public License, v 1.
     */
    
    import java.nio.file.Files
    
    String buildNumber = System.getenv('BUILD_NUMBER')
    
    if (buildNumber) {
      File uploadFile = file("build/${buildNumber}.tar.bz2")
      project.gradle.buildFinished { result ->
        println "build complete, generating: $uploadFile"
        if (uploadFile.exists()) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 2K bytes
    - Click Count (0)
  4. .ci/jobs.t/elastic+elasticsearch+pull-request+part-1-windows.yml

        description: "Testing of Elasticsearch pull requests - part-1 windows"
        node: "windows-immutable"
        workspace: "C:\\Users\\jenkins\\workspace\\pr-part-1\\${BUILD_NUMBER}"
        scm:
          - git:
              refspec: "+refs/pull/${ghprbPullId}/*:refs/remotes/origin/pr/${ghprbPullId}/*"
              branches:
                - "${ghprbActualCommit}"
        triggers:
          - github-pull-request:
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jul 01 22:34:45 GMT 2021
    - 1.7K bytes
    - Click Count (0)
  5. .ci/jobs.t/elastic+elasticsearch+pull-request+part-2-windows.yml

        description: "Testing of Elasticsearch pull requests - part-2 windows"
        node: "windows-immutable"
        workspace: "C:\\Users\\jenkins\\workspace\\pr-part-2\\${BUILD_NUMBER}"
        scm:
          - git:
              refspec: "+refs/pull/${ghprbPullId}/*:refs/remotes/origin/pr/${ghprbPullId}/*"
              branches:
                - "${ghprbActualCommit}"
        triggers:
          - github-pull-request:
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jul 01 22:34:45 GMT 2021
    - 1.7K bytes
    - Click Count (0)
  6. .ci/jobs.t/elastic+elasticsearch+pull-request+packaging-tests-windows-nojdk.yml

        # We use a hard-coded workspace directory here to avoid hitting windows path length limits
        child-workspace: "C:\\Users\\jenkins\\workspace\\pr-packaging-windows\\${BUILD_NUMBER}"
        project-type: matrix
        node: master
        scm:
          - git:
              refspec: "+refs/pull/${ghprbPullId}/*:refs/remotes/origin/pr/${ghprbPullId}/*"
              branches:
                - "${ghprbActualCommit}"
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Aug 24 19:49:58 GMT 2021
    - 2.3K bytes
    - Click Count (0)
  7. .ci/jobs.t/elastic+elasticsearch+pull-request+packaging-tests-windows-sample.yml

        # We use a hard-coded workspace directory here to avoid hitting windows path length limits
        child-workspace: "C:\\Users\\jenkins\\workspace\\pr-packaging-windows\\${BUILD_NUMBER}"
        project-type: matrix
        node: master
        scm:
          - git:
              refspec: "+refs/pull/${ghprbPullId}/*:refs/remotes/origin/pr/${ghprbPullId}/*"
              branches:
                - "${ghprbActualCommit}"
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Aug 24 18:50:27 GMT 2021
    - 2.1K bytes
    - Click Count (0)
  8. .ci/jobs.t/elastic+elasticsearch+pull-request+packaging-tests-windows-sample-nojdk.yml

        # We use a hard-coded workspace directory here to avoid hitting windows path length limits
        child-workspace: "C:\\Users\\jenkins\\workspace\\pr-packaging-windows\\${BUILD_NUMBER}"
        project-type: matrix
        node: master
        scm:
          - git:
              refspec: "+refs/pull/${ghprbPullId}/*:refs/remotes/origin/pr/${ghprbPullId}/*"
              branches:
                - "${ghprbActualCommit}"
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Aug 24 19:49:58 GMT 2021
    - 2.2K bytes
    - Click Count (0)
  9. build-tools-internal/src/main/groovy/elasticsearch.build-scan.gradle

    buildScan {
      background {
        URL jenkinsUrl = System.getenv('JENKINS_URL') ? new URL(System.getenv('JENKINS_URL')) : null
        String buildNumber = System.getenv('BUILD_NUMBER')
        String buildUrl = System.getenv('BUILD_URL')
        String jobName = System.getenv('JOB_NAME')
        String nodeName = System.getenv('NODE_NAME')
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Jul 21 20:40:34 GMT 2021
    - 4.6K bytes
    - Click Count (0)
  10. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/DistroTestPlugin.java

            vagrant.vmEnv("JAVA_HOME", convertPath(project, vagrant, gradleJdkProvider, "", ""));
            if (System.getenv("JENKINS_URL") != null) {
                Stream.of("JOB_NAME", "JENKINS_URL", "BUILD_NUMBER", "BUILD_URL").forEach(name -> vagrant.vmEnv(name, System.getenv(name)));
            }
            vagrant.setIsWindowsVM(isWindows(project));
        }
    
        private static Object convertPath(
            Project project,
    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)
Back to Top