Skip to content

Commit

Permalink
correct path for go exeuctables for circleci where GOPATH does not se…
Browse files Browse the repository at this point in the history
…em to get set as expected in the go executor env
  • Loading branch information
cartwrightian committed Oct 25, 2023
1 parent b35cebc commit 86e1afe
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def githubToken = System.getenv("GITHUB_TOKEN")
def gitUser = System.getenv("CIRCLE_PROJECT_USERNAME") ?: System.getenv("GIT_USERNAME")
def gitProject = System.getenv("CIRCLE_PROJECT_REPONAME") ?: System.getenv("GIT_PROJECT")
def gitSha = System.getenv("CIRCLE_SHA1") ?: currentGitSha()
def goPath = System.getenv("GOPATH") ?: "./go"
def goPath = System.getenv("GOPATH") ?: "../go"

version = '1.3.'+buildNumber

Expand Down Expand Up @@ -92,8 +92,6 @@ task unit(type: Test, dependsOn: compileJava) {
}
}



task integration(type: Test, dependsOn: compileJava) {
testLogging.showStandardStreams = true
filter {
Expand Down

0 comments on commit 86e1afe

Please sign in to comment.