File tree 2 files changed +4
-1
lines changed
server/docker/ops/jenkins
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env groovy
2
2
package org.ops.util
3
3
4
+ import com.cloudbees.groovy.cps.NonCPS
5
+
4
6
import java.nio.file.Path
5
7
8
+ @NonCPS
6
9
static def ofPath (String first , String ... more ) {
7
10
return Path . of(first as String , more. findAll { StringUtils . isNotEmpty(it) } as String []). toString()
8
11
}
9
12
13
+ @NonCPS
10
14
static def relativize (String p1 , String p2 ) {
11
15
return Path . of(p1 as String ). relativize(Path . of(p2 as String )). toString()
12
16
}
Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ services:
23
23
environment :
24
24
JENKINS_UC : https://mirrors.aliyun.com/jenkins/updates/update-center.json
25
25
JENKINS_UC_EXPERIMENTAL : https://mirrors.aliyun.com/jenkins/updates/experimental/update-center.json
26
- JAVA_OPTS : " -Xverify:none"
27
26
DOCKER_HOST : tcp://docker:2376
28
27
DOCKER_CERT_PATH : /docker-certs/client
29
28
DOCKER_TLS_VERIFY : 1
You can’t perform that action at this time.
0 commit comments