mirror of
				https://hub.gitmirror.com/https://github.com/gradle/actions.git
				synced 2025-10-31 18:10:00 +08:00 
			
		
		
		
	 c838a38ea1
			
		
	
	
		c838a38ea1
		
			
		
	
	
	
	
		
			
			- Workflow to run all integTest workflows, allowing use of prior cache entries - Workflow that starts with empty cache Both of these use workflow_call to combine the existing workflows.
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: Run integration tests allowing cache reuse
 | |
| 
 | |
| on:
 | |
|   pull_request:
 | |
|     types: [assigned, review_requested]
 | |
|   push:
 | |
| 
 | |
| jobs:
 | |
|   action-inputs:
 | |
|     uses: ./.github/workflows/integ-test-action-inputs.yml
 | |
| 
 | |
|   caching-config:
 | |
|     uses: ./.github/workflows/integ-test-action-inputs-caching.yml
 | |
| 
 | |
|   execution-with-caching:
 | |
|     uses: ./.github/workflows/integ-test-execution-with-caching.yml
 | |
| 
 | |
|   execution:
 | |
|     uses: ./.github/workflows/integ-test-execution.yml
 | |
| 
 | |
|   gradle-versions:
 | |
|     uses: ./.github/workflows/integ-test-gradle-versions.yml
 | |
| 
 | |
|   restore-configuration-cache:
 | |
|     uses: ./.github/workflows/integ-test-restore-configuration-cache.yml
 | |
| 
 | |
|   restore-custom-gradle-home:
 | |
|     uses: ./.github/workflows/integ-test-restore-custom-gradle-home.yml
 | |
| 
 | |
|   restore-gradle-home:
 | |
|     uses: ./.github/workflows/integ-test-restore-gradle-home.yml
 | |
| 
 | |
|   restore-java-toolchain:
 | |
|     uses: ./.github/workflows/integ-test-restore-java-toolchain.yml
 | |
| 
 | |
|   sample-kotlin-dsl:
 | |
|     uses: ./.github/workflows/integ-test-sample-kotlin-dsl.yml
 | |
| 
 | |
|   sample-gradle-plugin:
 | |
|     uses: ./.github/workflows/integ-test-sample-gradle-plugin.yml
 |