mirror of
				https://github.com/gradle/gradle-build-action.git
				synced 2025-11-04 01:28:56 +08:00 
			
		
		
		
	Fix test for dependency graph with configuration cache
This commit is contained in:
		@@ -32,20 +32,20 @@ class TestDependencyGraph extends BaseInitScriptTest {
 | 
			
		||||
        assert gitHubOutputFile.text == "dependency-graph-file=${reportFile.absolutePath}\n"
 | 
			
		||||
 | 
			
		||||
        where:
 | 
			
		||||
        testGradleVersion << GRADLE_8_X
 | 
			
		||||
        testGradleVersion << [GRADLE_8_X]
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    // Dependency-graph plugin doesn't support config-cache for 8.0 of Gradle
 | 
			
		||||
    def "produces dependency graph with configuration-cache on latest Gradle"() {
 | 
			
		||||
        assumeTrue testGradleVersion.compatibleWithCurrentJvm
 | 
			
		||||
 | 
			
		||||
        when:
 | 
			
		||||
        run(['help'], initScript, testGradleVersion.gradleVersion, [], envVars)
 | 
			
		||||
        run(['help', '--configuration-cache'], initScript, testGradleVersion.gradleVersion, [], envVars)
 | 
			
		||||
 | 
			
		||||
        then:
 | 
			
		||||
        assert reportFile.exists()
 | 
			
		||||
 | 
			
		||||
        where:
 | 
			
		||||
        // Dependency-graph plugin doesn't support config-cache for 8.0 of Gradle
 | 
			
		||||
        testGradleVersion << [GRADLE_8_X]
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user