- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for sanityCheck (0.05 sec)
-
.teamcity/src/main/kotlin/promotion/SanityCheck.kt
import jetbrains.buildServer.configs.kotlin.BuildType import jetbrains.buildServer.configs.kotlin.triggers.vcs import vcsroots.useAbsoluteVcs // Gradle_Master_Promotion_SanityCheck object SanityCheck : BuildType({ id("Promotion_SanityCheck") name = "SanityCheck" description = "Sanity check for promotion project" vcs.useAbsoluteVcs(VersionedSettingsBranch.fromDslContext().gradlePromoteVcsRootId()) steps {
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Dec 29 08:57:18 UTC 2025 - 978 bytes - Viewed (0) -
.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))
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Nov 12 12:12:29 UTC 2025 - 2.9K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/Gradleception.kt
import model.CIBuildModel import model.Stage /** * Build a Gradle distribution (dogfood-first) and use this distribution to build a distribution again (dogfood-second). * Use `dogfood-second` to run `test sanityCheck`. */ class Gradleception( model: CIBuildModel, stage: Stage, buildJvm: Jvm, jvmDescription: String, bundleGroovyMajor: Int? = null,
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Oct 09 05:26:45 UTC 2025 - 7.3K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/CIBuildModel.kt
): OsAwareBaseGradleBuildType = CompileAll(model, stage) }, SanityCheck { override fun create( model: CIBuildModel, stage: Stage, flakyTestStrategy: FlakyTestStrategy, ): OsAwareBaseGradleBuildType = SanityCheck(model, stage) }, BuildLogicTest { override fun create( model: CIBuildModel,
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Nov 05 13:00:26 UTC 2025 - 27.5K bytes - Viewed (0) -
CONTRIBUTING.md
#### 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,
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Nov 25 06:57:22 UTC 2025 - 19K bytes - Viewed (0) -
.teamcity/src/main/kotlin/projects/StageProject.kt
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 Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Oct 16 00:34:25 UTC 2025 - 12.1K bytes - Viewed (0) -
.github/workflows/contributor-pr.yml
- name: Setup Gradle uses: gradle/actions/setup-gradle@v5 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@v6 with:Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Sun Dec 14 14:03:48 UTC 2025 - 5K bytes - Viewed (0)