mirror of
				https://github.com/gradle/gradle-build-action.git
				synced 2025-11-04 09:58:56 +08:00 
			
		
		
		
	Remove writing value to gradle.properties in setup
The written property will override any project-level setting, which can lead to confusing behaviour. Fixes #1024
This commit is contained in:
		@@ -189,21 +189,6 @@ export class GradleStateCache {
 | 
				
			|||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    private initializeGradleUserHome(gradleUserHome: string, initScriptsDir: string): void {
 | 
					    private initializeGradleUserHome(gradleUserHome: string, initScriptsDir: string): void {
 | 
				
			||||||
        // Ensure that pre-installed java versions are detected. Only add property if it isn't already defined.
 | 
					 | 
				
			||||||
        const gradleProperties = path.resolve(gradleUserHome, 'gradle.properties')
 | 
					 | 
				
			||||||
        const existingGradleProperties = fs.existsSync(gradleProperties)
 | 
					 | 
				
			||||||
            ? fs.readFileSync(gradleProperties, 'utf8')
 | 
					 | 
				
			||||||
            : ''
 | 
					 | 
				
			||||||
        if (!existingGradleProperties.includes('org.gradle.java.installations.fromEnv=')) {
 | 
					 | 
				
			||||||
            fs.appendFileSync(
 | 
					 | 
				
			||||||
                gradleProperties,
 | 
					 | 
				
			||||||
                `
 | 
					 | 
				
			||||||
# Auto-detect pre-installed JDKs
 | 
					 | 
				
			||||||
org.gradle.java.installations.fromEnv=JAVA_HOME_8_X64,JAVA_HOME_11_X64,JAVA_HOME_17_X64
 | 
					 | 
				
			||||||
`
 | 
					 | 
				
			||||||
            )
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        // Copy init scripts from src/resources
 | 
					        // Copy init scripts from src/resources
 | 
				
			||||||
        const initScriptFilenames = [
 | 
					        const initScriptFilenames = [
 | 
				
			||||||
            'gradle-build-action.build-result-capture.init.gradle',
 | 
					            'gradle-build-action.build-result-capture.init.gradle',
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user