Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for withBuildCacheEnabled (0.24 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/process/internal/CancellationIntegrationTest.groovy

            """
        }
    
        private void startBuild(String task, boolean buildCacheEnabled) {
            executer.withArgument('--debug').withTasks(task)
            if (buildCacheEnabled) {
                executer.withBuildCacheEnabled()
            }
    
            client = new DaemonClientFixture(executer.start())
            waitForDaemonLog(START_UP_MESSAGE)
            daemons.daemon.assertBusy()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 04:31:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskExecutionErrorHandlingIntegrationTest.groovy

                        shouldFail = System.getProperty("failOn")
                        push = true
                    }
                }
            """
    
            executer.beforeExecute {
                executer.withBuildCacheEnabled()
            }
        }
    
        def "remote cache #failEvent error stack trace is printed when requested (#showStacktrace)"() {
            // Need to do it like this because stacktraces are always enabled for integration tests
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:22 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CacheTaskArchiveErrorIntegrationTest.groovy

        def buildOperations = new BuildOperationsFixture(executer, temporaryFolder)
        def cacheOperations = new BuildCacheOperationFixtures(buildOperations)
    
        def setup() {
            executer.beforeExecute { withBuildCacheEnabled() }
            settingsFile << localCache.localCacheConfiguration()
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "fails build when packing archive fails"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top