mirror of
https://github.com/gradle/actions
synced 2024-11-27 11:52:24 +00:00
Bump Develocity and CCUD plugin versions
This commit is contained in:
parent
8be796e9fa
commit
eef9b10930
11 changed files with 16 additions and 16 deletions
|
@ -1,6 +1,6 @@
|
|||
plugins {
|
||||
id "com.gradle.develocity" version "3.17.1"
|
||||
id "com.gradle.common-custom-user-data-gradle-plugin" version "2.0"
|
||||
id "com.gradle.develocity" version "3.17.2"
|
||||
id "com.gradle.common-custom-user-data-gradle-plugin" version "2.0.1"
|
||||
}
|
||||
|
||||
develocity {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
plugins {
|
||||
id("com.gradle.develocity") version "3.17.1"
|
||||
id("com.gradle.common-custom-user-data-gradle-plugin") version "2.0"
|
||||
id("com.gradle.develocity") version "3.17.2"
|
||||
id("com.gradle.common-custom-user-data-gradle-plugin") version "2.0.1"
|
||||
}
|
||||
|
||||
develocity {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
plugins {
|
||||
id "com.gradle.develocity" version "3.17.1"
|
||||
id "com.gradle.develocity" version "3.17.2"
|
||||
}
|
||||
|
||||
develocity {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
plugins {
|
||||
id "com.gradle.develocity" version "3.17.1"
|
||||
id "com.gradle.develocity" version "3.17.2"
|
||||
}
|
||||
|
||||
develocity {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
plugins {
|
||||
id "com.gradle.develocity" version "3.17"
|
||||
id "com.gradle.develocity" version "3.17.2"
|
||||
}
|
||||
|
||||
develocity {
|
||||
|
|
|
@ -33,7 +33,7 @@ jobs:
|
|||
matrix:
|
||||
gradle: [current, 7.6.2, 6.9.4, 5.6.4]
|
||||
os: ${{fromJSON(inputs.runner-os)}}
|
||||
plugin-version: [3.16.2, 3.17]
|
||||
plugin-version: [3.16.2, 3.17.2]
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- name: Checkout sources
|
||||
|
|
|
@ -720,10 +720,10 @@ Here's a minimal example:
|
|||
env:
|
||||
DEVELOCITY_INJECTION_ENABLED: true
|
||||
DEVELOCITY_URL: https://develocity.your-server.com
|
||||
DEVELOCITY_PLUGIN_VERSION: 3.17
|
||||
DEVELOCITY_PLUGIN_VERSION: 3.17.2
|
||||
```
|
||||
|
||||
This configuration will automatically apply `v3.17` of the [Develocity Gradle plugin](https://docs.gradle.com/develocity/gradle-plugin/), and publish build scans to https://develocity.your-server.com.
|
||||
This configuration will automatically apply `v3.17.2` of the [Develocity Gradle plugin](https://docs.gradle.com/develocity/gradle-plugin/), and publish build scans to https://develocity.your-server.com.
|
||||
|
||||
This example assumes that the `develocity.your-server.com` server allows anonymous publishing of build scans.
|
||||
In the likely scenario that your Develocity server requires authentication, you will also need to configure an additional environment variable
|
||||
|
|
|
@ -6,7 +6,7 @@ export function setup(config: BuildScanConfig): void {
|
|||
maybeExportVariable('DEVELOCITY_AUTO_INJECTION_CUSTOM_VALUE', 'gradle-actions')
|
||||
if (config.getBuildScanPublishEnabled()) {
|
||||
maybeExportVariable('DEVELOCITY_INJECTION_ENABLED', 'true')
|
||||
maybeExportVariable('DEVELOCITY_PLUGIN_VERSION', '3.17')
|
||||
maybeExportVariable('DEVELOCITY_PLUGIN_VERSION', '3.17.2')
|
||||
maybeExportVariable('DEVELOCITY_CCUD_PLUGIN_VERSION', '2.0')
|
||||
maybeExportVariable('DEVELOCITY_TERMS_OF_USE_URL', config.getBuildScanTermsOfUseUrl())
|
||||
maybeExportVariable('DEVELOCITY_TERMS_OF_USE_AGREE', config.getBuildScanTermsOfUseAgree())
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
plugins {
|
||||
id "com.gradle.develocity" version "3.17.1"
|
||||
id "com.gradle.common-custom-user-data-gradle-plugin" version "2.0"
|
||||
id "com.gradle.develocity" version "3.17.2"
|
||||
id "com.gradle.common-custom-user-data-gradle-plugin" version "2.0.1"
|
||||
}
|
||||
|
||||
develocity {
|
||||
|
|
|
@ -16,8 +16,8 @@ import java.nio.file.Files
|
|||
import java.util.zip.GZIPOutputStream
|
||||
|
||||
class BaseInitScriptTest extends Specification {
|
||||
static final String DEVELOCITY_PLUGIN_VERSION = '3.17'
|
||||
static final String CCUD_PLUGIN_VERSION = '2.0'
|
||||
static final String DEVELOCITY_PLUGIN_VERSION = '3.17.2'
|
||||
static final String CCUD_PLUGIN_VERSION = '2.0.1'
|
||||
|
||||
static final TestGradleVersion GRADLE_3_X = new TestGradleVersion(GradleVersion.version('3.5.1'), 7, 9)
|
||||
static final TestGradleVersion GRADLE_4_X = new TestGradleVersion(GradleVersion.version('4.10.3'), 7, 10)
|
||||
|
|
|
@ -190,7 +190,7 @@ class TestBuildResultRecorder extends BaseInitScriptTest {
|
|||
when:
|
||||
settingsFile.text = """
|
||||
plugins {
|
||||
id 'com.gradle.develocity' version '3.17' apply(false)
|
||||
id 'com.gradle.develocity' version '3.17.2' apply(false)
|
||||
}
|
||||
gradle.settingsEvaluated {
|
||||
apply plugin: 'com.gradle.develocity'
|
||||
|
|
Loading…
Reference in a new issue