Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for sanityCheck (0.25 sec)

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

            extraParameters = "-DenableCodeQuality=true ${buildScanTag("SanityCheck")} " + "-Porg.gradle.java.installations.auto-download=false"
        )
    }) {
        companion object {
            fun buildTypeId(model: CIBuildModel) = "${model.projectId}_SanityCheck"
        }
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Nov 30 11:15:05 GMT 2021
    - 708 bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/promotion/SanityCheck.kt

    import jetbrains.buildServer.configs.kotlin.triggers.vcs
    import vcsroots.gradlePromotionMaster
    import vcsroots.useAbsoluteVcs
    
    // Gradle_Master_Promotion_SanityCheck
    object SanityCheck : BuildType({
        id("Promotion_SanityCheck")
        name = "SanityCheck"
        description = "Sanity check for promotion project"
    
        vcs.useAbsoluteVcs(gradlePromotionMaster)
    
        steps {
            gradleWrapper {
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 977 bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/promotion/PromotionProject.kt

    class PromotionProject(branch: VersionedSettingsBranch) : Project({
        id("Promotion")
        name = "Promotion"
    
        cleanupRule(historyDays = 14, artifactsDays = 7)
    
        buildType(SanityCheck)
        buildType(PublishNightlySnapshot(branch))
        buildType(PublishNightlySnapshotFromQuickFeedback(branch))
        buildType(PublishNightlySnapshotFromQuickFeedbackStepCheckReady(branch))
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Feb 29 04:36:37 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/configurations/Gradleception.kt

            requiresNotSharedHost()
        }
    
        features {
            publishBuildStatusToGithub(model)
        }
    
        dependencies {
            // If SanityCheck fails, Gradleception will definitely fail because the last build step is also sanityCheck
            dependsOn(RelativeId(SanityCheck.buildTypeId(model)))
        }
    
        /*
         To avoid unnecessary rerun, what we do here is a bit complicated:
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Feb 27 09:57:17 GMT 2024
    - 6K bytes
    - Viewed (0)
  5. .teamcity/src/test/kotlin/PromotionProjectTests.kt

            )
        }
    
        @Test
        fun `promotion sanity check runs 'gradle tasks'`() {
            val model = setupModelFor("release")
    
            val sanityCheck = model.findBuildTypeByName("SanityCheck")
            val steps = sanityCheck.steps.items
            val gradleBuildStep = gradleStep(steps, 0)
            gradleBuildStep.assertTasks("tasks")
        }
    
        @Test
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Feb 13 14:18:23 GMT 2024
    - 13.4K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/model/CIBuildModel.kt

            override fun create(model: CIBuildModel, stage: Stage): BaseGradleBuildType {
                return CompileAll(model, stage)
            }
        },
        SanityCheck {
            override fun create(model: CIBuildModel, stage: Stage): BaseGradleBuildType {
                return SanityCheck(model, stage)
            }
        },
        BuildDistributions {
            override fun create(model: CIBuildModel, stage: Stage): BaseGradleBuildType {
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Feb 23 01:54:48 GMT 2024
    - 20.9K bytes
    - Viewed (0)
  7. .github/PULL_REQUEST_TEMPLATE.md

    - [ ] Provide unit tests (under `<subproject>/src/test`) to verify logic.
    - [ ] Update User Guide, DSL Reference, and Javadoc for public-facing changes.
    - [ ] Ensure that tests pass sanity check: `./gradlew sanityCheck`.
    - [ ] Ensure that tests pass locally: `./gradlew <changed-subproject>:quickTest`.
    
    ### Reviewing cheatsheet
    
    Before merging the PR, comments starting with 
    - ❌ ❓**must** be fixed
    - 🤔 💅 **should** be fixed
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Feb 13 22:36:19 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  8. CONTRIBUTING.md

    2. Install Gradle locally and try out a change in behavior manually. 
    - Install: `./gradlew install -Pgradle_installPath=/any/path`
    - Use: `/any/path/bin/gradle taskName`.
    
    It's also a good idea to run `./gradlew sanityCheck` before submitting your change because this will help catch code style issues.
    
    > **NOTE:** Do **NOT** run `gradle build` on the local development environment,
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Feb 09 15:30:53 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  9. .github/workflows/contributor-pr.yml

          - name: Setup Gradle
            uses: gradle/actions/setup-gradle@v3
            with:
              cache-read-only: ${{ github.ref != 'refs/heads/master' }}
          - run: ./gradlew sanityCheck --no-configuration-cache -DdisableLocalCache=true ${{ needs.build.outputs.sys-prop-args }}
    
      unit-test:
        name: "${{ matrix.bucket.name }} (Unit Test)"
        runs-on: ubuntu-latest
        needs: build
        strategy:
    Others
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Apr 16 09:36:52 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/projects/StageProject.kt

        val functionalTests: List<BaseGradleBuildType>
    
        val docsTestTriggers: List<BaseGradleBuildType>
    
        init {
            features {
                if (stage.specificBuilds.contains(SpecificBuild.SanityCheck)) {
                    buildReportTab("API Compatibility Report", "$hiddenArtifactDestination/report-architecture-test-binary-compatibility-report.html")
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 9.2K bytes
    - Viewed (0)
Back to top