summaryrefslogtreecommitdiff
path: root/docker
diff options
context:
space:
mode:
authorDan Duvall <dduvall@wikimedia.org>2018-07-30 15:26:45 -0700
committerDan Duvall <dduvall@wikimedia.org>2018-07-31 12:22:55 -0700
commit80936122c749199bb9a376a23ae85e45c4abebe0 (patch)
tree410d920d49b45ce89bbd487e0793ccc72fb6a493 /docker
parentaba163aa5a762a497a5b7a0f1a43fb756c916d64 (diff)
downloadblubber-80936122c749199bb9a376a23ae85e45c4abebe0.tar.gz
Change import paths from Phabricator to Gerrit
All import paths and other references to the previously Blubber repo in Phabricator have been changed to point to the new Gerrit project URL. Note that building or testing against this change will require you to move your working directory to `$GOPATH/src/gerrit.wikimedia.org/r/blubber`. Contribution documentation was updated to reflect the changes, and the `.arcvendor` submodule has been removed. Bug: T200452 Change-Id: I3ab23e420b2825e86e2bd7c9b3da9d4de23edaa1
Diffstat (limited to 'docker')
-rw-r--r--docker/compiler.go6
-rw-r--r--docker/compiler_test.go6
-rw-r--r--docker/instructions.go2
-rw-r--r--docker/instructions_test.go4
4 files changed, 9 insertions, 9 deletions
diff --git a/docker/compiler.go b/docker/compiler.go
index b0d5dce..4d60a22 100644
--- a/docker/compiler.go
+++ b/docker/compiler.go
@@ -6,9 +6,9 @@ package docker
import (
"bytes"
- "phabricator.wikimedia.org/source/blubber/build"
- "phabricator.wikimedia.org/source/blubber/config"
- "phabricator.wikimedia.org/source/blubber/meta"
+ "gerrit.wikimedia.org/r/blubber/build"
+ "gerrit.wikimedia.org/r/blubber/config"
+ "gerrit.wikimedia.org/r/blubber/meta"
)
// Compile takes a parsed config.Config and a configured variant name and
diff --git a/docker/compiler_test.go b/docker/compiler_test.go
index 0c495af..d8ab18f 100644
--- a/docker/compiler_test.go
+++ b/docker/compiler_test.go
@@ -6,9 +6,9 @@ import (
"github.com/stretchr/testify/assert"
- "phabricator.wikimedia.org/source/blubber/config"
- "phabricator.wikimedia.org/source/blubber/docker"
- "phabricator.wikimedia.org/source/blubber/meta"
+ "gerrit.wikimedia.org/r/blubber/config"
+ "gerrit.wikimedia.org/r/blubber/docker"
+ "gerrit.wikimedia.org/r/blubber/meta"
)
func TestSingleStageHasNoName(t *testing.T) {
diff --git a/docker/instructions.go b/docker/instructions.go
index 56c04b9..8f5c63c 100644
--- a/docker/instructions.go
+++ b/docker/instructions.go
@@ -5,7 +5,7 @@ import (
"fmt"
"strings"
- "phabricator.wikimedia.org/source/blubber/build"
+ "gerrit.wikimedia.org/r/blubber/build"
)
// NewInstruction takes a general internal build.Instruction and returns
diff --git a/docker/instructions_test.go b/docker/instructions_test.go
index 9bdbeb1..b89a721 100644
--- a/docker/instructions_test.go
+++ b/docker/instructions_test.go
@@ -5,8 +5,8 @@ import (
"github.com/stretchr/testify/assert"
- "phabricator.wikimedia.org/source/blubber/build"
- "phabricator.wikimedia.org/source/blubber/docker"
+ "gerrit.wikimedia.org/r/blubber/build"
+ "gerrit.wikimedia.org/r/blubber/docker"
)
func TestRun(t *testing.T) {