Skip to content

Commit

Permalink
Merge pull request #38 from HarrisChu/fix_version
Browse files Browse the repository at this point in the history
fix version
  • Loading branch information
HarrisChu authored Apr 21, 2023
2 parents 2f39b58 + 88ed128 commit f4ff08c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ all: build
pairs := darwin/amd64 linux/amd64 linux/arm64
GOPATH ?= ~/go
export GO111MODULE=on
VERSION ?= v1.0.1
VERSION ?= v1.1.0
K6_VERSION ?= v0.43.0

fmt:
Expand All @@ -26,12 +26,12 @@ build-all: build-arm-v7
GOOS=$$os GOARCH=$$arch $(GOPATH)/bin/xk6 build $(K6_VERSION) --with github.com/vesoft-inc/k6-plugin@$(VERSION) ;\
mv k6 k6-$$os-$$arch; \
done
cd tools
cd tools ;\
for pair in $(pairs);do echo $$pair; \
os=`echo $$pair | cut -d / -f 1 ` ;\
arch=`echo $$pair | cut -d / -f 2 ` ;\
GOOS=$$os GOARCH=$$arch go build ;\
mv tools tools-$$os-$$arch-; \
mv tools tools-$$os-$$arch; \
done

build-arm-v7:
Expand Down

0 comments on commit f4ff08c

Please sign in to comment.