Skip to content
This repository was archived by the owner on Aug 9, 2021. It is now read-only.

Commit 794c3e3

Browse files
authored
Merge 4afab2e into 7689771
2 parents 7689771 + 4afab2e commit 794c3e3

15 files changed

Lines changed: 485 additions & 52 deletions

File tree

Gopkg.lock

Lines changed: 34 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@
6363

6464
[[constraint]]
6565
name = "github.com/seborama/govcr"
66-
# version = "2.4.1"
67-
revision = "a20ea7b5807f64c80cf6ed51de68063ad05164f4"
66+
# version = "v4.5.0"
67+
revision = "3842ef9d41141d7a28074e3911978d79423053ef"
6868

6969
[[constraint]]
7070
name = "github.com/stretchr/testify"

ci/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ COPY . .
3232

3333
## download deps & move libgit2 library into expected location.
3434
RUN git --version \
35-
&& dep ensure \
35+
&& go mod vendor \
3636
&& mkdir -p vendor/gopkg.in/libgit2/git2go.v25/vendor/libgit2/build/ \
3737
&& cp -r /usr/local/linux/lib/pkgconfig/. /go/src/github.com/analogj/capsulecd/vendor/gopkg.in/libgit2/git2go.v25/vendor/libgit2/build/ \
3838
&& . /scripts/toolchains/linux/linux-build-env.sh \

ci/test-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ for d in $(go list ./...); do
1212
OUTPUT_PATH=$(echo "$d" | sed -e "s/^github.com\/analogj\/capsulecd\///")
1313
echo "Generating TEST BINARY: ${OUTPUT_PATH}/test_binary_${1}"
1414
mkdir -p /caches/test-binaries/${OUTPUT_PATH}
15-
go test -race -covermode=atomic -tags="static $1" -c -o=${OUTPUT_PATH}/test_binary_${1} $d
15+
go test -mod vendor -race -covermode=atomic -tags="static $1" -c -o=${OUTPUT_PATH}/test_binary_${1} $d
1616
done

cmd/capsulecd/capsulecd.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ func main() {
3131
},
3232
Before: func(c *cli.Context) error {
3333

34-
capsuleUrl := "https://github.com/AnalogJ/capsulecd"
34+
capsuleUrl := "github.com/AnalogJ/capsulecd"
3535

3636
versionInfo := fmt.Sprintf("%s.%s-%s", goos, goarch, version.VERSION)
3737

go.mod

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
module github.com/analogj/capsulecd
2+
3+
go 1.13
4+
5+
require (
6+
github.com/Masterminds/semver v1.5.0
7+
github.com/analogj/go-bitbucket v0.4.1-0.20180829210310-6acaddff5364
8+
github.com/golang/mock v1.3.1-0.20190508161146-9fa652df1129
9+
github.com/golang/protobuf v1.3.2 // indirect
10+
github.com/google/go-github v17.0.0+incompatible
11+
github.com/google/go-querystring v1.0.0 // indirect
12+
github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 // indirect
13+
github.com/k0kubun/pp v2.4.0+incompatible // indirect
14+
github.com/kvz/logstreamer v0.0.0-20150507115422-a635b98146f0
15+
github.com/magiconair/properties v1.8.1 // indirect
16+
github.com/mattn/go-colorable v0.1.2 // indirect
17+
github.com/mattn/go-isatty v0.0.9 // indirect
18+
github.com/mitchellh/mapstructure v1.1.2
19+
github.com/pelletier/go-toml v1.4.0 // indirect
20+
github.com/seborama/govcr v2.4.2+incompatible
21+
github.com/spf13/afero v1.2.2 // indirect
22+
github.com/spf13/jwalterweatherman v1.1.0 // indirect
23+
github.com/spf13/viper v1.4.0
24+
github.com/stretchr/testify v1.4.0
25+
github.com/urfave/cli v1.19.1
26+
golang.org/x/net v0.0.0-20190909003024-a7b16738d86b // indirect
27+
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
28+
golang.org/x/sys v0.0.0-20190911201528-7ad0cfa0b7b5 // indirect
29+
google.golang.org/appengine v1.6.2 // indirect
30+
gopkg.in/libgit2/git2go.v25 v25.0.0-20170120134632-334260d743d7
31+
gopkg.in/yaml.v2 v2.2.2
32+
)

0 commit comments

Comments
 (0)