mirror of
				https://github.com/gradle/gradle-build-action.git
				synced 2025-11-04 09:58:56 +08:00 
			
		
		
		
	Fix tests that run on Windows
- Properly escape sysprop values - Use bash for file existence checks
This commit is contained in:
		@@ -63,17 +63,17 @@ test('will cleanup unused gradle versions', async () => {
 | 
			
		||||
})
 | 
			
		||||
 | 
			
		||||
async function runGradleBuild(projectRoot: string, args: string, version: string = '3.1'): Promise<void> {
 | 
			
		||||
    const status31 = await exec.exec(`gradle -g HOME --no-daemon --build-cache -Dcommons_math3_version=${version} ${args}`, [], {
 | 
			
		||||
    const status31 = await exec.exec(`gradle -g HOME --no-daemon --build-cache -Dcommons_math3_version="${version}" ${args}`, [], {
 | 
			
		||||
        cwd: projectRoot
 | 
			
		||||
    })
 | 
			
		||||
    console.log(`Gradle User Home initialized with commons_math3_version=${version} ${args}`)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
async function runGradleWrapperBuild(projectRoot: string, args: string, version: string = '3.1'): Promise<void> {
 | 
			
		||||
    const status31 = await exec.exec(`./gradlew -g HOME --no-daemon --build-cache -Dcommons_math3_version=${version} ${args}`, [], {
 | 
			
		||||
    const status31 = await exec.exec(`./gradlew -g HOME --no-daemon --build-cache -Dcommons_math3_version="${version}" ${args}`, [], {
 | 
			
		||||
        cwd: projectRoot
 | 
			
		||||
    })
 | 
			
		||||
    console.log(`Gradle User Home initialized with commons_math3_version=${version} ${args}`)
 | 
			
		||||
    console.log(`Gradle User Home initialized with commons_math3_version="${version}" ${args}`)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function prepareTestProject(): string {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user