mirror of
				https://hub.gitmirror.com/https://github.com/gradle/actions.git
				synced 2025-10-30 01:20:05 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			46 lines
		
	
	
		
			999 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			999 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: CI-integ-test
 | |
| 
 | |
| on:
 | |
|   workflow_dispatch:
 | |
|   pull_request:
 | |
|   push:
 | |
|     branches:
 | |
|     - 'main'
 | |
|     - 'release/**'
 | |
|     - 'dev/**' # Allow running tests on dev branches without a PR
 | |
|     paths-ignore:
 | |
|     - 'dist/**'
 | |
| 
 | |
| concurrency:
 | |
|   group: integ-test
 | |
|   cancel-in-progress: false
 | |
| 
 | |
| permissions:
 | |
|   contents: read
 | |
| 
 | |
| jobs:
 | |
|   build-distribution:
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|     - name: Checkout sources
 | |
|       uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
 | |
|     - name: Build and upload distribution
 | |
|       if: ${{ needs.determine-suite.outputs.suite != 'full' }}
 | |
|       uses: ./.github/actions/build-dist
 | |
| 
 | |
|   caching-integ-tests:
 | |
|     needs: build-distribution
 | |
|     uses: ./.github/workflows/suite-integ-test-caching.yml
 | |
|     with:
 | |
|       skip-dist: false
 | |
|     secrets: inherit
 | |
| 
 | |
|   other-integ-tests:
 | |
|     permissions:
 | |
|       contents: write
 | |
|     needs: build-distribution
 | |
|     uses: ./.github/workflows/suite-integ-test-other.yml
 | |
|     with:
 | |
|       skip-dist: false
 | |
|     secrets: inherit
 | 
