Skip to content

Commit

Permalink
Merge pull request #8612 from concourse/build-vcs-false-6-8
Browse files Browse the repository at this point in the history
add buildvcs=false to go build in integration tests v6.8.x
  • Loading branch information
xtremerui committed Nov 3, 2022
2 parents 8c19043 + 5695206 commit 840ac80
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fly/integration/suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ var teams = []atc.Team{
}

var _ = SynchronizedBeforeSuite(func() []byte {
binPath, err := gexec.Build("github.com/concourse/concourse/fly")
binPath, err := gexec.Build("github.com/concourse/concourse/fly", "-buildvcs=false")
Expect(err).NotTo(HaveOccurred())

return []byte(binPath)
Expand Down
2 changes: 1 addition & 1 deletion worker/baggageclaim/integration/baggageclaim/suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ type suiteData struct {
}

var _ = SynchronizedBeforeSuite(func() []byte {
bcPath, err := gexec.Build("github.com/concourse/concourse/worker/baggageclaim/cmd/baggageclaim")
bcPath, err := gexec.Build("github.com/concourse/concourse/worker/baggageclaim/cmd/baggageclaim", "-buildvcs=false")
Expect(err).NotTo(HaveOccurred())

data, err := json.Marshal(suiteData{
Expand Down
2 changes: 1 addition & 1 deletion worker/baggageclaim/integration/fs_mounter/suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ type suiteData struct {
}

var _ = SynchronizedBeforeSuite(func() []byte {
fsmPath, err := gexec.Build("github.com/concourse/concourse/worker/baggageclaim/cmd/fs_mounter")
fsmPath, err := gexec.Build("github.com/concourse/concourse/worker/baggageclaim/cmd/fs_mounter", "-buildvcs=false")
Expect(err).NotTo(HaveOccurred())

data, err := json.Marshal(suiteData{
Expand Down

0 comments on commit 840ac80

Please sign in to comment.