mirror of
				https://hub.gitmirror.com/https://github.com/gradle/gradle-build-action
				synced 2025-10-31 01:50:08 +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.
		
			
				
	
	
		
			44 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: Test save/restore Gradle state with direct execution
 | |
| 
 | |
| on:
 | |
|   pull_request:
 | |
|     types: [assigned, review_requested]
 | |
|   push:
 | |
|   workflow_dispatch:
 | |
| 
 | |
| env:
 | |
|   GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: ${{github.workflow}}#${{github.run_number}}:${{github.run_attempt}}-
 | |
| 
 | |
| jobs:
 | |
|   seed-build:
 | |
|     strategy:
 | |
|       matrix:
 | |
|         os: [ubuntu-latest, windows-latest]
 | |
|     runs-on: ${{ matrix.os }}
 | |
|     steps:
 | |
|     - name: Checkout sources
 | |
|       uses: actions/checkout@v2
 | |
|     - name: Exucute Gradle build
 | |
|       uses: ./
 | |
|       with:
 | |
|         build-root-directory: __tests__/samples/groovy-dsl
 | |
|         arguments: test
 | |
| 
 | |
|   # Test that the gradle-user-home is restored
 | |
|   verify-build:
 | |
|     needs: seed-build
 | |
|     strategy:
 | |
|       matrix:
 | |
|         os: [ubuntu-latest, windows-latest]
 | |
|     runs-on: ${{ matrix.os }}
 | |
|     steps:
 | |
|     - name: Checkout sources
 | |
|       uses: actions/checkout@v2
 | |
|     - name: Execute Gradle build
 | |
|       uses: ./
 | |
|       with:
 | |
|         cache-read-only: true
 | |
|         build-root-directory: __tests__/samples/groovy-dsl
 | |
|         arguments: test --offline -DverifyCachedBuild=true
 | |
| 
 |