Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SanityCheck (0.16 sec)

  1. .teamcity/src/main/kotlin/configurations/SanityCheck.kt

                publishBuildStatusToGithub(model)
            }
    
            applyDefaults(
                model,
                this,
                "sanityCheck",
                extraParameters =
                    listOf(
                        stage.getBuildScanCustomValueParam(),
                        buildScanTagParam("SanityCheck"),
                        "-Dorg.gradle.java.installations.auto-download=false",
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Mon Aug 25 20:21:47 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/model/CIBuildModel.kt

                model: CIBuildModel,
                stage: Stage,
            ): OsAwareBaseGradleBuildType = CompileAll(model, stage)
        },
        SanityCheck {
            override fun create(
                model: CIBuildModel,
                stage: Stage,
            ): OsAwareBaseGradleBuildType = SanityCheck(model, stage)
        },
        BuildLogicTest {
            override fun create(
                model: CIBuildModel,
                stage: Stage,
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Sun Aug 03 22:40:28 UTC 2025
    - 25.9K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/projects/StageProject.kt

        val docsTestTriggers: List<OsAwareBaseGradleBuildType>
    
        init {
            features {
                buildReportTab("Problems Report", "problems-report.html")
                if (stage.specificBuilds.contains(SpecificBuild.SanityCheck)) {
                    buildReportTab(
                        "API Compatibility Report",
                        "$HIDDEN_ARTIFACT_DESTINATION/report-architecture-test-binary-compatibility-report.html",
                    )
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Tue Jul 29 03:24:58 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  4. .github/workflows/contributor-pr.yml

          - name: Setup Gradle
            uses: gradle/actions/setup-gradle@v4
            with:
              cache-read-only: ${{ github.ref != 'refs/heads/master' }}
          - run: ./gradlew sanityCheck -DdisableLocalCache=true ${{ needs.build.outputs.sys-prop-args }}
          - name: Upload Compatibility Report
            if: always()
            uses: actions/upload-artifact@v4
            with:
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Sep 04 22:13:34 UTC 2025
    - 4.1K bytes
    - Viewed (0)
Back to top