File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -140,6 +140,9 @@ jobs:
140
140
- name : Add SBT proxy repositories
141
141
run : cp -vf .github/workflows/repositories /root/.sbt/ ; true
142
142
143
+ - name : Check Develocity Key
144
+ run : echo $DEVELOCITY_ACCESS_KEY | wc -m
145
+
143
146
- name : Cmd Tests
144
147
run : |
145
148
./project/scripts/buildScalaBinary
Original file line number Diff line number Diff line change @@ -275,13 +275,14 @@ object Build {
275
275
val isInsideCI = insideCI.value
276
276
val previousConfig = develocityConfiguration.value
277
277
val previousBuildScan = previousConfig.buildScan
278
+ println(" DEVELOCITY_ACCESS_KEY: " + sys.env.get(" DEVELOCITY_ACCESS_KEY" ).getOrElse(" " ).size)
278
279
previousConfig
279
280
.withProjectId(ProjectId (" scala3" ))
280
281
.withServer(previousConfig.server.withUrl(Some (url(" https://develocity.scala-lang.org" ))))
281
282
.withBuildScan(
282
283
previousBuildScan
283
- .withPublishing(Publishing .onlyIf(_.authenticated ))
284
- .withBackgroundUpload(! isInsideCI )
284
+ .withPublishing(Publishing .onlyIf(_ => true ))
285
+ .withBackgroundUpload(false )
285
286
.tag(if (isInsideCI) " CI" else " Local" )
286
287
.withLinks(previousBuildScan.links ++ GithubEnv .develocityLinks)
287
288
.withValues(previousBuildScan.values ++ GithubEnv .develocityValues)
You can’t perform that action at this time.
0 commit comments