mirror of
https://github.com/gradle/actions
synced 2024-11-23 18:02:13 +00:00
45 lines
999 B
YAML
45 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
|