Skip to content

Commit

Permalink
Finish packs refactor + remove mount options
Browse files Browse the repository at this point in the history
  • Loading branch information
sclevine committed Mar 15, 2018
1 parent d3419d0 commit 42beb13
Show file tree
Hide file tree
Showing 53 changed files with 1,223 additions and 666 deletions.
8 changes: 5 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,16 @@ language: go
services:
- docker
go:
- 1.9.x
- 1.10.x
go_import_path: code.cloudfoundry.org/cflocal
install:
- set -e
- curl -fsSLo "$GOPATH/bin/dep" "https://github.com/golang/dep/releases/download/v0.3.2/dep-linux-amd64"
- curl -fsSLo "$GOPATH/bin/dep" "https://github.com/golang/dep/releases/download/v0.4.1/dep-linux-amd64"
- chmod +x "$GOPATH/bin/dep"
- dep ensure
- go get github.com/sclevine/forge
- ( cd "$GOPATH/src/github.com/sclevine/forge" && dep ensure )
- curl -fsSL "https://cli.run.pivotal.io/stable?release=linux64-binary" | tar -C "$GOPATH/bin" -xz cf
- bin/vendor
script:
- test -z "$(bin/format | tee >(cat >&2))"
- bin/test -nodes=2 -compilers=2
Expand Down
211 changes: 24 additions & 187 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 5 additions & 23 deletions Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,17 @@ required = [
# Utilities
"github.com/onsi/ginkgo/ginkgo",
"github.com/golang/mock/mockgen",

# Transitive Forks
"github.com/opencontainers/runc/libcontainer/system",
"golang.org/x/net/context",
]

ignored = [
"code.cloudfoundry.org/cli/cf/resources",
"github.com/sclevine/forge",
"github.com/sclevine/forge/*",
]

# App

[[constraint]]
name = "code.cloudfoundry.org/cli"
version = "=6.32.0"

[[constraint]]
name = "github.com/fsnotify/fsevents"
source = "https://github.com/elastic/fsevents.git"
branch = "master"

[[constraint]]
Expand All @@ -39,10 +31,6 @@ ignored = [
name = "github.com/nu7hatch/gouuid"
branch = "master"

[[constraint]]
name = "github.com/sclevine/forge"
branch = "master"

# Test

[[constraint]]
Expand All @@ -57,12 +45,6 @@ ignored = [
name = "github.com/golang/mock"
branch = "master"

# Transitive Forks

[[constraint]]
name = "github.com/opencontainers/runc"
source = "https://github.com/docker/runc.git"

[[constraint]]
name = "golang.org/x/net"
source = "https://github.com/tonistiigi/net.git"
[prune]
go-tests = true
unused-packages = true
Loading

0 comments on commit 42beb13

Please sign in to comment.