Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for gradleBuildCommitId (0.14 sec)

  1. testing/distributions-integ-tests/build.gradle.kts

        integTestDistributionRuntimeOnly(project(":distributions-full"))
    }
    
    tasks.forkingIntegTest {
        systemProperty("gradleBuildBranch", buildBranch.get())
        systemProperty("gradleBuildCommitId", buildCommitId.get())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/util/Git.groovy

        final String commitId
        final String branchName
    
        static Git current() {
            return INSTANCE
        }
    
        private Git() {
            commitId = System.getProperty("gradleBuildCommitId", DefaultGradleVersion.current().gitRevision)
            branchName = System.getProperty("gradleBuildBranch", "unknown-branch")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/reporter/PerformanceReporter.groovy

                    // For org.gradle.performance.util.Git
                    spec.systemProperty("gradleBuildBranch", branchName)
                    spec.systemProperty("gradleBuildCommitId", commitId)
    
                    spec.setClasspath(classpath)
    
                    spec.ignoreExitValue = true
                    spec.setErrorOutput(output)
                    spec.setStandardOutput(output)
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 22 15:27:22 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  4. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/SrcDistributionIntegrationSpec.groovy

                withArgument("-Porg.gradle.java.installations.paths=${Jvm.current().javaHome.absolutePath}")
                withEnvironmentVars([BUILD_BRANCH: System.getProperty("gradleBuildBranch"), BUILD_COMMIT_ID: System.getProperty("gradleBuildCommitId")])
                withWarningMode(WarningMode.None)
                noDeprecationChecks()
            }.run()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top