Combine all integTest workflows into 2 workflow runs

- 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.
This commit is contained in:
Daz DeBoer 2022-05-28 08:55:58 -06:00
parent 2e34e4f80f
commit c838a38ea1
No known key found for this signature in database
GPG key ID: DD6B9F0B06683D5D
17 changed files with 180 additions and 127 deletions

40
.github/workflows/ci-quick-check.yml vendored Normal file
View file

@ -0,0 +1,40 @@
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