feat 编译时插桩

This commit is contained in:
2026-01-24 12:03:16 +08:00
parent 0bbab4d25d
commit 4ca2beea7d

24
deploy/Jenkinsfile vendored
View File

@@ -57,17 +57,19 @@ pipeline {
}
}
steps {
def goPath = sh(script: 'go env GOPATH', returnStdout: true).trim()
def orchestrionPath = "${goPath}/bin/orchestrion"
sh """
export GOPROXY=https://goproxy.cn,direct
export CGO_ENABLED=0
export GOOS=linux
export GOARCH=amd64
go install github.com/DataDog/orchestrion@v1.7.0
${orchestrionPath} pin
${orchestrionPath} go build -o ${env.APP_NAME} .
"""
script {
def goPath = sh(script: 'go env GOPATH', returnStdout: true).trim()
def orchestrionPath = "${goPath}/bin/orchestrion"
sh """
export GOPROXY=https://goproxy.cn,direct
export CGO_ENABLED=0
export GOOS=linux
export GOARCH=amd64
go install github.com/DataDog/orchestrion@v1.7.0
${orchestrionPath} pin
${orchestrionPath} go build -o ${env.APP_NAME} .
"""
}
}
}