mirror of
				https://hub.gitmirror.com/https://github.com/gradle/gradle-build-action
				synced 2025-10-31 10:00:07 +08:00 
			
		
		
		
	 b9684c0cf5
			
		
	
	
		b9684c0cf5
		
			
		
	
	
	
	
		
			
			This makes the version alias match other places where we reference a release candidate version. The 'rc' alias is still supported, but emits a deprecation warning.
		
			
				
	
	
		
			61 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.7 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]
 | |
|         include:
 | |
|           - os: windows-latest
 | |
|             script-suffix: '.bat'
 | |
|     runs-on: ${{ matrix.os }}
 | |
|     steps:
 | |
|     - name: Checkout sources
 | |
|       uses: actions/checkout@v2
 | |
|     - name: Test use Gradle wrapper
 | |
|       uses: ./
 | |
|       with:
 | |
|         build-root-directory: __tests__/samples/basic
 | |
|         arguments: test
 | |
|     - name: Test use defined Gradle version
 | |
|       uses: ./
 | |
|       with:
 | |
|         gradle-version: 6.9
 | |
|         build-root-directory: __tests__/samples/no-wrapper
 | |
|         arguments: help
 | |
|     - name: Test use Gradle version alias
 | |
|       uses: ./
 | |
|       with:
 | |
|         gradle-version: release-candidate
 | |
|         build-root-directory: __tests__/samples/no-wrapper
 | |
|         arguments: help
 | |
|     - name: Test use defined Gradle executable
 | |
|       uses: ./
 | |
|       with:
 | |
|         gradle-executable: __tests__/samples/basic/gradlew${{ matrix.script-suffix }}
 | |
|         build-root-directory: __tests__/samples/no-wrapper
 | |
|         arguments: help
 | |
|     - name: Test custom wrapper location (deprecated)
 | |
|       uses: ./
 | |
|       with:
 | |
|         build-root-directory: __tests__/samples/no-wrapper
 | |
|         wrapper-directory: __tests__/samples/basic
 | |
|         arguments: help
 | |
| 
 | |
|   failures: # These build invocations are informational only, and are expected to fail
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|     - name: Checkout sources
 | |
|       uses: actions/checkout@v2
 | |
|     - name: Test wrapper missing
 | |
|       uses: ./
 | |
|       continue-on-error: true
 | |
|       with:
 | |
|         build-root-directory: __tests__/samples/no-wrapper
 | |
|         arguments: help
 |