mirror of
				https://hub.gitmirror.com/https://github.com/gradle/gradle-build-action
				synced 2025-10-31 01:50:08 +08:00 
			
		
		
		
	 18c8a679dc
			
		
	
	
		18c8a679dc
		
	
	
	
	
		
			
			This removes the need to specify `wrapper-directory` when using a Gradle project that is not located in the root of the workspace. Fixes #44.
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
|  # make sure the action works on a clean machine without building
 | |
| name: prod
 | |
| 
 | |
| on:
 | |
|   pull_request:
 | |
|   push:
 | |
| 
 | |
| jobs:
 | |
|   check:
 | |
|     strategy:
 | |
|       matrix:
 | |
|         os: [ubuntu-latest, macos-latest, windows-latest]
 | |
|     runs-on: ${{ matrix.os }}
 | |
|     steps:
 | |
|     - name: Checkout sources
 | |
|       uses: actions/checkout@v2
 | |
|     - name: Test wrapper
 | |
|       uses: ./
 | |
|       with:
 | |
|         build-root-directory: __tests__/data/basic
 | |
|         dependencies-cache-enabled: true
 | |
|         configuration-cache-enabled: true
 | |
|         arguments: test
 | |
|     - name: Test custom wrapper location
 | |
|       uses: ./
 | |
|       with:
 | |
|         build-root-directory: __tests__/data/basic
 | |
|         wrapper-directory: __tests__/data/basic
 | |
|         dependencies-cache-enabled: false
 | |
|         configuration-cache-enabled: false
 | |
|         arguments: test
 | |
|     - name: Test dist download
 | |
|       uses: ./
 | |
|       with:
 | |
|         gradle-version: rc
 | |
|         build-root-directory: __tests__/data/basic
 | |
|         dependencies-cache-enabled: true
 | |
|         configuration-cache-enabled: true
 | |
|         arguments: test --configuration-cache
 | |
|     - name: Stop Gradle daemon
 | |
|       uses: ./
 | |
|       with:
 | |
|         gradle-version: rc
 | |
|         build-root-directory: __tests__/data/basic
 | |
|         dependencies-cache-enabled: true
 | |
|         configuration-cache-enabled: true
 | |
|         arguments: --stop
 |