mirror of
https://github.com/gradle/actions
synced 2024-11-23 18:02:13 +00:00
b51fcf4d6c
Some checks failed
CI-check-and-unit-test / check-format-and-unit-test (push) Has been cancelled
CI-codeql / Analyze (javascript-typescript) (push) Has been cancelled
CI-init-script-check / test-init-scripts (push) Has been cancelled
CI-integ-test-full / caching-integ-tests (push) Has been cancelled
CI-integ-test-full / other-integ-tests (push) Has been cancelled
CI-integ-test / build-distribution (push) Has been cancelled
CI-update-dist / update-dist (push) Has been cancelled
CI-integ-test / caching-integ-tests (push) Has been cancelled
CI-integ-test / other-integ-tests (push) Has been cancelled
35 lines
758 B
YAML
35 lines
758 B
YAML
name: CI-integ-test-full
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
paths:
|
|
- 'dist/**'
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
concurrency:
|
|
group: integ-test
|
|
cancel-in-progress: false
|
|
|
|
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:
|
|
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
|