2022-05-29 16:59:36 -04:00
|
|
|
name: CI-quick-check
|
2022-05-28 10:55:58 -04:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2022-05-29 16:44:21 -04:00
|
|
|
branches-ignore: main
|
2022-05-28 10:55:58 -04:00
|
|
|
|
|
|
|
jobs:
|
2022-05-29 15:47:45 -04:00
|
|
|
build-distribution:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Build and upload distribution
|
|
|
|
uses: ./.github/actions/build-dist
|
|
|
|
|
2022-05-28 10:55:58 -04:00
|
|
|
action-inputs:
|
2022-05-29 15:47:45 -04:00
|
|
|
needs: build-distribution
|
2022-05-28 10:55:58 -04:00
|
|
|
uses: ./.github/workflows/integ-test-action-inputs.yml
|
2022-05-29 15:47:45 -04:00
|
|
|
with:
|
|
|
|
runner-os: '["ubuntu-latest"]'
|
|
|
|
download-dist: true
|
2022-05-28 10:55:58 -04:00
|
|
|
|
|
|
|
caching-config:
|
2022-05-29 15:47:45 -04:00
|
|
|
needs: build-distribution
|
2022-05-28 10:55:58 -04:00
|
|
|
uses: ./.github/workflows/integ-test-action-inputs-caching.yml
|
2022-05-29 15:47:45 -04:00
|
|
|
with:
|
|
|
|
runner-os: '["ubuntu-latest"]'
|
|
|
|
download-dist: true
|
2022-05-28 10:55:58 -04:00
|
|
|
|
|
|
|
execution-with-caching:
|
2022-05-29 15:47:45 -04:00
|
|
|
needs: build-distribution
|
2022-05-28 10:55:58 -04:00
|
|
|
uses: ./.github/workflows/integ-test-execution-with-caching.yml
|
2022-05-29 15:47:45 -04:00
|
|
|
with:
|
|
|
|
runner-os: '["ubuntu-latest"]'
|
|
|
|
download-dist: true
|
2022-05-28 10:55:58 -04:00
|
|
|
|
|
|
|
execution:
|
2022-05-29 15:47:45 -04:00
|
|
|
needs: build-distribution
|
2022-05-28 10:55:58 -04:00
|
|
|
uses: ./.github/workflows/integ-test-execution.yml
|
2022-05-29 15:47:45 -04:00
|
|
|
with:
|
|
|
|
runner-os: '["ubuntu-latest"]'
|
|
|
|
download-dist: true
|
2022-05-28 10:55:58 -04:00
|
|
|
|
2022-05-29 16:58:14 -04:00
|
|
|
provision-gradle-versions:
|
2022-05-29 15:47:45 -04:00
|
|
|
needs: build-distribution
|
2022-05-29 16:58:14 -04:00
|
|
|
uses: ./.github/workflows/integ-test-provision-gradle-versions.yml
|
2022-05-29 15:47:45 -04:00
|
|
|
with:
|
|
|
|
runner-os: '["ubuntu-latest"]'
|
|
|
|
download-dist: true
|
2022-05-28 10:55:58 -04:00
|
|
|
|
2022-05-29 17:13:03 -04:00
|
|
|
restore-configuration-cache:
|
|
|
|
needs: build-distribution
|
|
|
|
uses: ./.github/workflows/integ-test-restore-configuration-cache.yml
|
|
|
|
with:
|
|
|
|
runner-os: '["ubuntu-latest"]'
|
|
|
|
download-dist: true
|
2022-05-28 10:55:58 -04:00
|
|
|
|
|
|
|
restore-custom-gradle-home:
|
2022-05-29 15:47:45 -04:00
|
|
|
needs: build-distribution
|
2022-05-28 10:55:58 -04:00
|
|
|
uses: ./.github/workflows/integ-test-restore-custom-gradle-home.yml
|
2022-05-29 15:47:45 -04:00
|
|
|
with:
|
|
|
|
runner-os: '["ubuntu-latest"]'
|
|
|
|
download-dist: true
|
2022-05-28 10:55:58 -04:00
|
|
|
|
|
|
|
restore-gradle-home:
|
2022-05-29 15:47:45 -04:00
|
|
|
needs: build-distribution
|
2022-05-28 10:55:58 -04:00
|
|
|
uses: ./.github/workflows/integ-test-restore-gradle-home.yml
|
2022-05-29 15:47:45 -04:00
|
|
|
with:
|
|
|
|
runner-os: '["ubuntu-latest"]'
|
|
|
|
download-dist: true
|
2022-05-28 10:55:58 -04:00
|
|
|
|
|
|
|
restore-java-toolchain:
|
2022-05-29 15:47:45 -04:00
|
|
|
needs: build-distribution
|
2022-05-28 10:55:58 -04:00
|
|
|
uses: ./.github/workflows/integ-test-restore-java-toolchain.yml
|
2022-05-29 15:47:45 -04:00
|
|
|
with:
|
|
|
|
runner-os: '["ubuntu-latest"]'
|
|
|
|
download-dist: true
|
2022-05-28 10:55:58 -04:00
|
|
|
|
|
|
|
sample-kotlin-dsl:
|
2022-05-29 15:47:45 -04:00
|
|
|
needs: build-distribution
|
2022-05-28 10:55:58 -04:00
|
|
|
uses: ./.github/workflows/integ-test-sample-kotlin-dsl.yml
|
2022-05-29 15:47:45 -04:00
|
|
|
with:
|
|
|
|
runner-os: '["ubuntu-latest"]'
|
|
|
|
download-dist: true
|
2022-05-28 10:55:58 -04:00
|
|
|
|
|
|
|
sample-gradle-plugin:
|
2022-05-29 15:47:45 -04:00
|
|
|
needs: build-distribution
|
2022-05-28 10:55:58 -04:00
|
|
|
uses: ./.github/workflows/integ-test-sample-gradle-plugin.yml
|
2022-05-29 15:47:45 -04:00
|
|
|
with:
|
|
|
|
runner-os: '["ubuntu-latest"]'
|
|
|
|
download-dist: true
|