Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for noBuildTriggered (0.14 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SmokeContinuousIntegrationTest.groovy

            then:
            buildTriggeredAndSucceeded()
            outputContains("includedFiles: 1")
    
            when:
            excludedFile.text = "changed"
            then:
            noBuildTriggered()
    
            when:
            sources.file("sub/some/otherIncluded.txt").createFile()
            then:
            buildTriggeredAndSucceeded()
            outputContains("includedFiles: 2")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractContinuousIntegrationTest.groovy

                    } finally {
                        if (gradle.running) {
                            gradle.abort()
                        }
                    }
                }
            }
        }
    
        void noBuildTriggered(int waitSeconds = 3) {
            // TODO - change this general strategy to positively detect changes we are ignoring instead of asserting that a build doesn't happen in some time frame
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top