File tree 4 files changed +24
-2
lines changed
4 files changed +24
-2
lines changed Original file line number Diff line number Diff line change 2
2
go vet
3
3
4
4
test : vet
5
- ginkgo -p -r --randomizeAllSpecs --failOnPending --randomizeSuites --race
5
+ ./scripts/test.sh
6
6
7
7
coverage : vet
8
- ginkgo -p -r --randomizeAllSpecs --failOnPending --randomizeSuites --race -cover -coverprofile=coverage.txt -outputdir=.
8
+ ./scripts/generate-coverage.sh
9
+
10
+ release : test
11
+ ./scripts/release.sh
9
12
10
13
.PHONY : test
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ ginkgo -p -r --randomizeAllSpecs --failOnPending --randomizeSuites --race -cover -coverprofile=coverage.txt -outputdir=.
4
+
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ workspace=$( mktemp -d)
4
+
5
+ for platform in linux darwin; do
6
+ echo " building ${platform} ..."
7
+ env GOOS=${platform} GOARCH=amd64 CGO_ENABLED=0 \
8
+ go build -o ${workspace} /gomg_${platform} github.com/williammartin/gomg
9
+ done
10
+
11
+ open ${workspace}
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ ginkgo -p -r --randomizeAllSpecs --failOnPending --randomizeSuites --race
4
+
You can’t perform that action at this time.
0 commit comments