mirror of
https://github.com/gradle/actions.git
synced 2026-04-19 18:12:58 +08:00
More consistent names for workflow jobs
This commit is contained in:
@@ -9,7 +9,7 @@
|
|||||||
# the `language` matrix defined below to confirm you have the correct set of
|
# the `language` matrix defined below to confirm you have the correct set of
|
||||||
# supported CodeQL languages.
|
# supported CodeQL languages.
|
||||||
#
|
#
|
||||||
name: codeql
|
name: ci-codeql
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
name: full-check
|
name: ci-full-check
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
name: quick-check
|
name: ci-quick-check
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
@@ -41,9 +41,9 @@ jobs:
|
|||||||
runner-os: '["ubuntu-latest"]'
|
runner-os: '["ubuntu-latest"]'
|
||||||
download-dist: true
|
download-dist: true
|
||||||
|
|
||||||
gradle-versions:
|
provision-gradle-versions:
|
||||||
needs: build-distribution
|
needs: build-distribution
|
||||||
uses: ./.github/workflows/integ-test-gradle-versions.yml
|
uses: ./.github/workflows/integ-test-provision-gradle-versions.yml
|
||||||
with:
|
with:
|
||||||
runner-os: '["ubuntu-latest"]'
|
runner-os: '["ubuntu-latest"]'
|
||||||
download-dist: true
|
download-dist: true
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
name: verify-outputs
|
name: ci-verify-outputs
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
name: Execute failure cases
|
name: demo-failure-cases
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
name: Add a build scan comment to PR
|
name: Demo adding build scan comment to PR
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
types: [assigned, review_requested]
|
types: [assigned, review_requested]
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
name: Test action inputs that control caching
|
name: Test action inputs for caching
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
name: Test different action inputs
|
name: Test action inputs
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
name: Test save/restore Gradle Home with direct execution
|
name: Test execution with caching
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
name: Test Gradle execution
|
name: Test execution
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
|
|||||||
+2
-2
@@ -1,4 +1,4 @@
|
|||||||
name: Test provision different Gradle versions
|
name: Test provision Gradle versions
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
@@ -14,7 +14,7 @@ on:
|
|||||||
|
|
||||||
env:
|
env:
|
||||||
DOWNLOAD_DIST: ${{ inputs.download-dist }}
|
DOWNLOAD_DIST: ${{ inputs.download-dist }}
|
||||||
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: gradle-versions-${{ inputs.cache-key-prefix }}
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: provision-gradle-versions-${{ inputs.cache-key-prefix }}
|
||||||
GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
|
GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
name: Test save/restore configuration-cache state
|
name: Test restore configuration-cache
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
name: Test caching with a custom GRADLE_USER_HOME
|
name: Test restore custom Gradle Home
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
name: Test save/restore Gradle Home directory
|
name: Test restore Gradle Home
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
name: Test save/restore java toolchains
|
name: Test restore java toolchains
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
name: Test caching with Gradle Plugin project using TestKit
|
name: Test sample Gradle Plugin project
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
name: Test caching with Kotlin DSL
|
name: Test sample Kotlin DSL project
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
|
|||||||
Reference in New Issue
Block a user