chore(just): build linux binary for behavior-go
This commit is contained in:
8
justfile
8
justfile
@@ -7,16 +7,20 @@ go-build:
|
|||||||
@mkdir -p dist
|
@mkdir -p dist
|
||||||
go build -o dist/homesick-go ./cmd/homesick
|
go build -o dist/homesick-go ./cmd/homesick
|
||||||
|
|
||||||
|
go-build-linux:
|
||||||
|
@mkdir -p dist
|
||||||
|
GOOS=linux GOARCH="$(go env GOARCH)" go build -o dist/homesick-go ./cmd/homesick
|
||||||
|
|
||||||
go-test:
|
go-test:
|
||||||
go test ./...
|
go test ./...
|
||||||
|
|
||||||
behavior-ruby:
|
behavior-ruby:
|
||||||
./script/run-behavior-suite-docker.sh
|
./script/run-behavior-suite-docker.sh
|
||||||
|
|
||||||
behavior-go: go-build
|
behavior-go: go-build-linux
|
||||||
HOMESICK_CMD="/workspace/dist/homesick-go" ./script/run-behavior-suite-docker.sh
|
HOMESICK_CMD="/workspace/dist/homesick-go" ./script/run-behavior-suite-docker.sh
|
||||||
|
|
||||||
behavior-go-verbose: go-build
|
behavior-go-verbose: go-build-linux
|
||||||
HOMESICK_CMD="/workspace/dist/homesick-go" ./script/run-behavior-suite-docker.sh --verbose
|
HOMESICK_CMD="/workspace/dist/homesick-go" ./script/run-behavior-suite-docker.sh --verbose
|
||||||
|
|
||||||
behavior-ruby-verbose:
|
behavior-ruby-verbose:
|
||||||
|
|||||||
Reference in New Issue
Block a user