Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for CompileAll (0.19 sec)

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

    package configurations
    
    import model.CIBuildModel
    import model.Stage
    
    class CompileAll(model: CIBuildModel, stage: Stage) : BaseGradleBuildType(stage = stage, init = {
        id(buildTypeId(model))
        name = "Compile All"
        description = "Compiles all production/test source code and warms up the build cache"
    
        features {
            publishBuildStatusToGithub(model)
        }
    
        applyDefaults(
            model,
            this,
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Sep 22 09:52:00 GMT 2023
    - 999 bytes
    - Viewed (0)
  2. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.cache-miss-monitor.gradle.kts

    fun Project.isExpectedAsciidoctorCacheMiss() =
    // Expected cache-miss for asciidoctor task:
    // 1. CompileAll is the seed build for docs:distDocs
    // 2. BuildDistributions is the seed build for other asciidoctor tasks
    // 3. buildScanPerformance test, which doesn't depend on compileAll
    // 4. buildScanPerformance test, which doesn't depend on compileAll
        isInBuild(
            "Check_CompileAllBuild",
            "Check_BuildDistributions",
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Mar 07 05:49:29 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/util/RerunFlakyTest.kt

    import common.compileAllDependency
    import common.functionalTestExtraParameters
    import common.functionalTestParameters
    import common.gradleWrapper
    import common.killProcessStep
    import configurations.CompileAll
    import jetbrains.buildServer.configs.kotlin.BuildStep
    import jetbrains.buildServer.configs.kotlin.BuildType
    import jetbrains.buildServer.configs.kotlin.ParameterDisplay
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Apr 24 08:17:56 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/model/CIBuildModel.kt

        never, eachCommit, daily, weekly
    }
    
    const val GRADLE_BUILD_SMOKE_TEST_NAME = "gradleBuildSmokeTest"
    
    enum class SpecificBuild {
        CompileAll {
            override fun create(model: CIBuildModel, stage: Stage): BaseGradleBuildType {
                return CompileAll(model, stage)
            }
        },
        SanityCheck {
            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)
  5. .teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt

            buildType.dependencies {
                dependsOn(RelativeId(stageTriggerId(model, StageName.QUICK_FEEDBACK_LINUX_ONLY)))
            }
        }
        if (buildType !is CompileAll) {
            buildType.dependencies {
                compileAllDependency(CompileAll.buildTypeId(model))
            }
        }
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Apr 24 08:17:56 GMT 2024
    - 7.9K bytes
    - Viewed (0)
  6. .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 compileAll --no-configuration-cache -DdisableLocalCache=true ${{ steps.determine-sys-prop-args.outputs.sys-prop-args }}
          - uses: actions/upload-artifact@v4
            with:
              name: build-receipt.properties
    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)
  7. .teamcity/src/main/kotlin/common/extensions.kt

            matches("teamcity.build.branch", "(pre-test/.*)|(gh-readonly-queue/.*)")
        }
    }
    
    fun BuildStep.skipConditionally(buildType: BuildType? = null) {
        // we need to run CompileALl unconditionally because of artifact dependency
        if (buildType !is CompileAll) {
            conditions {
                doesNotEqual("skip.build", "true")
            }
        }
    }
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 12 10:49:15 GMT 2024
    - 13K bytes
    - Viewed (0)
  8. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

                add(project.dependencies.create(platform(project(":distributions-dependencies"))))
            }
        }
    }
    
    fun addCompileAllTask() {
        tasks.register("compileAll") {
            description = "Compile all source code, including main, test, integTest, crossVersionTest, testFixtures, etc."
            val compileTasks = project.tasks.matching {
                it is JavaCompile || it is GroovyCompile
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Wed Jan 17 13:36:27 GMT 2024
    - 15.7K bytes
    - Viewed (0)
Back to top