mirror of
				https://hub.gitmirror.com/https://github.com/gradle/actions.git
				synced 2025-10-30 09:29:57 +08:00 
			
		
		
		
	 4f616f683a
			
		
	
	
		4f616f683a
		
			
		
	
	
	
	
		
			
			This change to the integration tests should properly isolate multiple runs of the same job. Previously, some jobs would fail if you attempted to re-run them via the UI, because the cache entries would be re-used from the previous run.
		
			
				
	
	
		
			35 lines
		
	
	
		
			791 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			791 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: Execute failure cases
 | |
| 
 | |
| on:
 | |
|   workflow_dispatch:
 | |
| 
 | |
| env:
 | |
|   GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: ${{github.workflow}}#${{github.run_number}}:${{github.run_attempt}}-
 | |
| 
 | |
| jobs:
 | |
| 
 | |
|   wrapper-missing:
 | |
|     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
 | |
| 
 | |
|   bad-configuration:
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|     - name: Checkout sources
 | |
|       uses: actions/checkout@v2
 | |
|     - name: Test bad config value
 | |
|       uses: ./
 | |
|       continue-on-error: true
 | |
|       with:
 | |
|         build-root-directory: __tests__/samples/no-wrapper
 | |
|         arguments: help
 | |
|         cache-disabled: yes
 |