Skip to content
This repository has been archived by the owner on Sep 4, 2021. It is now read-only.
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
GO_ENV=GOROOT=`readlink -f build/_go`
build:
script/build-flynn
release:
script/build-flynn --git-version
clean:
script/clean-flynn
test: test-unit test-integration
test-unit: build
env $(GO_ENV) PATH=${PWD}/build/bin:${PATH} go test -race -cover ./...
test-unit-root: test-unit
sudo -E env $(GO_ENV) PATH=${PWD}/build/bin:${PATH} go test -race -cover ./host/volume/...
test-integration: build
script/run-integration-tests
.PHONY: build release clean test test-unit test-unit-root test-integration