Skip to content

Commit

Permalink
chore(packaging): fix GOPATH being overwritten (#992)
Browse files Browse the repository at this point in the history
Drone workspace was overwriting whole GOPATH, which made our executables go away
  • Loading branch information
sh0rez authored Sep 9, 2019
1 parent 3957c18 commit 9bce5d7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .drone/drone.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ local manifest(apps) = pipeline('manifest') {
local drone = [
pipeline('check') {
workspace: {
base: "/go",
path: "src/github.com/grafana/loki"
base: "/go/src",
path: "github.com/grafana/loki"
},
steps: [
make('test', container=false) { depends_on: ['clone'] },
Expand Down
4 changes: 2 additions & 2 deletions .drone/drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ steps:
image: grafana/loki-build-image:0.5.0
name: check-generated-files
workspace:
base: /go
path: src/github.com/grafana/loki
base: /go/src
path: github.com/grafana/loki
---
depends_on:
- check
Expand Down

0 comments on commit 9bce5d7

Please sign in to comment.