Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CompileAll (1.94 sec)

  1. .teamcity/src/main/kotlin/common/CommonExtensions.kt

            matches("teamcity.build.branch", "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")
            }
        }
    }
    
    fun buildToolGradleParameters(
        isContinue: Boolean = true,
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Sep 10 01:37:13 UTC 2025
    - 15K bytes
    - Viewed (0)
  2. .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 compileAll -DdisableLocalCache=true ${{ steps.determine-sys-prop-args.outputs.sys-prop-args }}
          - uses: actions/upload-artifact@v4
            if: always()
            with:
              name: build-receipt.properties
    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