Skip to content

Commit c7c2a48

Browse files
authored
Develocity key name change (#3454)
1 parent cc887f5 commit c7c2a48

File tree

5 files changed

+6
-11
lines changed

5 files changed

+6
-11
lines changed

.github/workflows/bin-solr-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
timeout-minutes: 40
2020

2121
env:
22-
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
22+
DEVELOCITY_ACCESS_KEY: ${{ secrets.SOLR_DEVELOCITY_ACCESS_KEY }}
2323

2424
steps:
2525
- name: Checkout code

.github/workflows/docker-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
env:
2222
SOLR_DOCKER_IMAGE_REPO: github-pr/solr
2323
SOLR_DOCKER_IMAGE_TAG: ${{github.event.number}}
24-
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
24+
DEVELOCITY_ACCESS_KEY: ${{ secrets.SOLR_DEVELOCITY_ACCESS_KEY }}
2525

2626
steps:
2727
- name: Checkout code

.github/workflows/gradle-precommit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Gradle Precommit
22

3-
on:
3+
on:
44
pull_request:
55
branches:
66
- '*'
@@ -13,7 +13,7 @@ jobs:
1313
timeout-minutes: 15
1414

1515
env:
16-
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
16+
DEVELOCITY_ACCESS_KEY: ${{ secrets.SOLR_DEVELOCITY_ACCESS_KEY }}
1717

1818
steps:
1919
- name: Checkout code

.github/workflows/solrj-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
timeout-minutes: 15
1717

1818
env:
19-
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
19+
DEVELOCITY_ACCESS_KEY: ${{ secrets.SOLR_DEVELOCITY_ACCESS_KEY }}
2020

2121
steps:
2222
- name: Checkout code

gradle/develocity.gradle

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,7 @@ develocity {
2727
buildScan {
2828
uploadInBackground = !isCIBuild
2929

30-
publishing.onlyIf { buildScan ->
31-
println "Entered into build scan module..."
32-
println "buildScan: ${buildScan}"
33-
println "Develocity Authenticated: ${buildScan.authenticated}"
34-
buildScan.authenticated
35-
}
30+
publishing.onlyIf { it.authenticated }
3631
obfuscation {
3732
ipAddresses { addresses -> addresses.collect { address -> "0.0.0.0"} }
3833
}

0 commit comments

Comments
 (0)