mirror of
				https://hub.gitmirror.com/https://github.com/gradle/actions.git
				synced 2025-11-04 20:10:00 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			40 lines
		
	
	
		
			823 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			823 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: CI-integ-test-full
 | 
						|
 | 
						|
on:
 | 
						|
  workflow_dispatch:
 | 
						|
  push:
 | 
						|
    branches:
 | 
						|
    - 'main'
 | 
						|
    paths:
 | 
						|
    - 'dist/**'
 | 
						|
 | 
						|
concurrency:
 | 
						|
  group: integ-test
 | 
						|
  cancel-in-progress: false
 | 
						|
 | 
						|
permissions:
 | 
						|
  contents: read
 | 
						|
 | 
						|
jobs:
 | 
						|
  caching-integ-tests:
 | 
						|
    uses: ./.github/workflows/suite-integ-test-caching.yml
 | 
						|
    concurrency:
 | 
						|
      group: CI-integ-test-full
 | 
						|
      cancel-in-progress: false
 | 
						|
    with:
 | 
						|
      runner-os: '["ubuntu-latest", "windows-latest", "macos-latest"]'
 | 
						|
      skip-dist: true
 | 
						|
    secrets: inherit
 | 
						|
 | 
						|
  other-integ-tests:
 | 
						|
    permissions:
 | 
						|
      contents: write
 | 
						|
    uses: ./.github/workflows/suite-integ-test-other.yml
 | 
						|
    concurrency:
 | 
						|
      group: CI-integ-test-full
 | 
						|
      cancel-in-progress: false
 | 
						|
    with:
 | 
						|
      runner-os: '["ubuntu-latest", "windows-latest", "macos-latest"]'
 | 
						|
      skip-dist: true
 | 
						|
    secrets: inherit
 |