2023-09-21 10:19:49 -04:00
|
|
|
name: Test dependency graph
|
2023-07-05 18:43:29 -04:00
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_call:
|
|
|
|
inputs:
|
|
|
|
cache-key-prefix:
|
|
|
|
type: string
|
|
|
|
runner-os:
|
|
|
|
type: string
|
|
|
|
default: '["ubuntu-latest", "windows-latest", "macos-latest"]'
|
|
|
|
|
2024-01-01 19:13:16 -05:00
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
|
2023-07-05 18:43:29 -04:00
|
|
|
env:
|
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: dependency-graph-${{ inputs.cache-key-prefix }}
|
|
|
|
GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
groovy-generate:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-04 18:34:02 -04:00
|
|
|
uses: actions/checkout@v4
|
2023-07-05 18:43:29 -04:00
|
|
|
- name: Setup Gradle for dependency-graph generate
|
|
|
|
uses: ./
|
|
|
|
with:
|
2023-12-23 20:39:37 -05:00
|
|
|
dependency-graph: generate-and-upload
|
2023-07-05 18:43:29 -04:00
|
|
|
- name: Run gradle build
|
|
|
|
run: ./gradlew build
|
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
|
|
|
|
|
|
|
kotlin-generate:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-04 18:34:02 -04:00
|
|
|
uses: actions/checkout@v4
|
2023-07-05 18:43:29 -04:00
|
|
|
- name: Setup Gradle for dependency-graph generate
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
dependency-graph: generate-and-submit
|
|
|
|
- name: Run gradle build
|
|
|
|
run: ./gradlew build
|
|
|
|
working-directory: .github/workflow-samples/kotlin-dsl
|
|
|
|
|
|
|
|
submit:
|
2023-12-23 20:39:37 -05:00
|
|
|
needs: [groovy-generate]
|
2023-07-05 18:43:29 -04:00
|
|
|
runs-on: "ubuntu-latest"
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-04 18:34:02 -04:00
|
|
|
uses: actions/checkout@v4
|
2023-07-05 18:43:29 -04:00
|
|
|
- name: Submit dependency graphs
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
dependency-graph: download-and-submit
|
2023-07-15 20:06:38 -04:00
|
|
|
|
|
|
|
multiple-builds:
|
2023-09-21 11:04:45 -04:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
|
|
|
runs-on: ${{ matrix.os }}
|
2023-07-15 20:06:38 -04:00
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-04 18:34:02 -04:00
|
|
|
uses: actions/checkout@v4
|
2023-07-15 20:06:38 -04:00
|
|
|
- name: Setup Gradle for dependency-graph generate
|
|
|
|
uses: ./
|
|
|
|
with:
|
2023-12-23 20:39:37 -05:00
|
|
|
dependency-graph: generate-and-submit
|
2023-07-24 10:34:10 -04:00
|
|
|
- id: gradle-assemble
|
2023-07-15 20:06:38 -04:00
|
|
|
run: ./gradlew assemble
|
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
2023-07-24 10:34:10 -04:00
|
|
|
- id: gradle-build
|
2023-07-15 20:06:38 -04:00
|
|
|
run: ./gradlew build
|
2023-07-24 10:34:10 -04:00
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
2024-01-11 17:02:31 -05:00
|
|
|
- id: gradle-build-again
|
|
|
|
run: ./gradlew build
|
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
2023-07-15 20:06:38 -04:00
|
|
|
- name: Check generated dependency graphs
|
2023-09-21 11:04:45 -04:00
|
|
|
shell: bash
|
2023-07-15 20:06:38 -04:00
|
|
|
run: |
|
2023-07-24 10:34:10 -04:00
|
|
|
echo "gradle-assemble report file: ${{ steps.gradle-assemble.outputs.dependency-graph-file }}"
|
|
|
|
echo "gradle-build report file: ${{ steps.gradle-build.outputs.dependency-graph-file }}"
|
2024-01-11 17:02:31 -05:00
|
|
|
echo "gradle-build-again report file: ${{ steps.gradle-build-again.outputs.dependency-graph-file }}"
|
2023-07-15 20:06:38 -04:00
|
|
|
ls -l dependency-graph-reports
|
2023-09-21 11:04:45 -04:00
|
|
|
if [ ! -e "${{ steps.gradle-assemble.outputs.dependency-graph-file }}" ]; then
|
|
|
|
echo "Did not find gradle-assemble dependency graph file"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
if [ ! -e "${{ steps.gradle-build.outputs.dependency-graph-file }}" ]; then
|
|
|
|
echo "Did not find gradle-build dependency graph files"
|
2023-07-15 20:06:38 -04:00
|
|
|
exit 1
|
2023-07-24 10:34:10 -04:00
|
|
|
fi
|
2024-01-11 17:02:31 -05:00
|
|
|
if [ ! -e "${{ steps.gradle-build-again.outputs.dependency-graph-file }}" ]; then
|
|
|
|
echo "Did not find gradle-build-again dependency graph files"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
config-cache:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Gradle for dependency-graph generate
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
dependency-graph: generate-and-submit
|
|
|
|
- id: config-cache-store
|
|
|
|
run: ./gradlew assemble --configuration-cache
|
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
|
|
|
- name: Check and delete generated dependency graph
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
if [ ! -e "${{ steps.config-cache-store.outputs.dependency-graph-file }}" ]; then
|
|
|
|
echo "Did not find config-cache-store dependency graph files"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
rm ${{ steps.config-cache-store.outputs.dependency-graph-file }}
|
|
|
|
- id: config-cache-reuse
|
|
|
|
run: ./gradlew assemble --configuration-cache
|
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
|
|
|
- name: Check no dependency graph is generated
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
if [ ! -z "$(ls -A dependency-graph-reports)" ]; then
|
|
|
|
echo "Expected no dependency graph files to be generated"
|
|
|
|
ls -l dependency-graph-reports
|
|
|
|
exit 1
|
|
|
|
fi
|