2023-06-29 11:50:35 -04:00
|
|
|
name: Demo Job Summary, for Gradle builds
|
2022-05-27 22:03:47 -04:00
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
|
|
|
|
env:
|
|
|
|
GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
|
|
|
|
|
|
|
|
jobs:
|
2024-01-01 14:31:36 -05:00
|
|
|
many-gradle-builds:
|
2022-05-27 22:03:47 -04:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-04 18:34:02 -04:00
|
|
|
uses: actions/checkout@v4
|
2022-05-27 22:03:47 -04:00
|
|
|
- name: Setup Gradle
|
|
|
|
uses: ./
|
|
|
|
- name: Build kotlin-dsl project
|
|
|
|
working-directory: .github/workflow-samples/kotlin-dsl
|
|
|
|
run: ./gradlew assemble
|
2023-07-22 10:49:39 -04:00
|
|
|
- name: Build kotlin-dsl project without Build Scan®
|
2022-06-05 00:37:36 -04:00
|
|
|
working-directory: .github/workflow-samples/kotlin-dsl
|
2022-06-19 11:56:40 -04:00
|
|
|
run: ./gradlew assemble check --no-scan
|
2023-07-22 10:49:39 -04:00
|
|
|
- name: Build kotlin-dsl project with Build Scan® publish failure
|
2022-06-19 11:16:27 -04:00
|
|
|
working-directory: .github/workflow-samples/kotlin-dsl
|
|
|
|
run: ./gradlew check -Dgradle.enterprise.url=https://not.valid.server
|
2022-05-27 22:03:47 -04:00
|
|
|
- name: Build groovy-dsl project
|
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
|
|
|
run: ./gradlew assemble
|
2022-06-05 00:53:36 -04:00
|
|
|
- name: Build kotlin-dsl project with multiple gradle invocations
|
2022-05-27 22:03:47 -04:00
|
|
|
working-directory: .github/workflow-samples/kotlin-dsl
|
|
|
|
run: |
|
|
|
|
./gradlew tasks --no-daemon
|
|
|
|
./gradlew help check
|
|
|
|
- name: Fail groovy-dsl project
|
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
|
|
|
continue-on-error: true
|
|
|
|
run: ./gradlew not-a-real-task
|
2023-08-19 14:37:50 -04:00
|
|
|
|
2024-01-01 14:31:36 -05:00
|
|
|
successful-builds-with-no-summary:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Gradle
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
add-job-summary: on-failure
|
|
|
|
- name: Build kotlin-dsl project
|
|
|
|
working-directory: .github/workflow-samples/kotlin-dsl
|
|
|
|
run: ./gradlew assemble
|
|
|
|
- name: Build kotlin-dsl project without Build Scan®
|
|
|
|
working-directory: .github/workflow-samples/kotlin-dsl
|
|
|
|
run: ./gradlew assemble check --no-scan
|
|
|
|
|
2023-08-19 14:37:50 -04:00
|
|
|
pre-existing-gradle-home:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-04 18:34:02 -04:00
|
|
|
uses: actions/checkout@v4
|
2023-08-19 14:37:50 -04:00
|
|
|
- name: Pre-create Gradle User Home
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
mkdir ~/.gradle
|
|
|
|
mkdir ~/.gradle/caches
|
|
|
|
touch ~/.gradle/caches/dummy.txt
|
|
|
|
- name: Setup Gradle
|
|
|
|
uses: ./
|
|
|
|
- name: Run build
|
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
|
|
|
run: ./gradlew assemble
|