Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
# permissions and limitations under the License.

env:
# The CI system uses Debian 10 with go from stable backports:
PATH: "/usr/lib/go-1.13/bin:/usr/bin"
# Firectl tests will run against this version of firecracker:
FIRECRACKER_VERSION: 0.19.0
# Firecracker binaries will be installed and run from this directory:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
# express or implied. See the License for the specific language governing
# permissions and limitations under the License.
SRCFILES := *.go
SRCFILES := *.go go.sum go.mod

INSTALLROOT ?= /usr/local
BINDIR ?= $(INSTALLROOT)/bin
Expand Down
25 changes: 21 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,9 +1,26 @@
module github.com/firecracker-microvm/firectl

go 1.14

require (
github.com/firecracker-microvm/firecracker-go-sdk v0.19.0
github.com/go-openapi/strfmt v0.17.1
github.com/containerd/fifo v0.0.0-20200410184934-f15a3290365b // indirect
github.com/firecracker-microvm/firecracker-go-sdk v0.22.0
github.com/go-openapi/spec v0.19.9 // indirect
github.com/go-openapi/strfmt v0.19.5
github.com/google/go-cmp v0.5.1 // indirect
github.com/hashicorp/go-multierror v1.1.0 // indirect
github.com/jessevdk/go-flags v1.4.0
github.com/pkg/errors v0.8.1
github.com/sirupsen/logrus v1.1.1
github.com/konsorten/go-windows-terminal-sequences v1.0.3 // indirect
github.com/mailru/easyjson v0.7.2 // indirect
github.com/mitchellh/mapstructure v1.3.3 // indirect
github.com/onsi/ginkgo v1.14.0 // indirect
github.com/pkg/errors v0.9.1
github.com/sirupsen/logrus v1.7.0
github.com/tidwall/pretty v1.0.1 // indirect
github.com/vishvananda/netns v0.0.0-20200728191858-db3c7e526aae // indirect
go.mongodb.org/mongo-driver v1.4.0 // indirect
golang.org/x/net v0.0.0-20200707034311-ab3426394381 // indirect
golang.org/x/sys v0.0.0-20200808120158-1030fc2bf1d9 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
google.golang.org/protobuf v1.25.0 // indirect
)
Loading