gotty/wercker.yml
Iwasaki Yudai 91be466d29 Release with commit ID
So that release branch can push assets with a proper commit ID.
2017-08-08 17:29:40 +09:00

33 lines
704 B
YAML

box: golang:1.7.3
build:
steps:
- setup-go-workspace
- script:
name: tools
code: make tools
- script:
name: test
code: make test
- script:
name: cross compile
code: make cross_compile OUTPUT_DIR=$WERCKER_OUTPUT_DIR
- script:
name: store Makefile
code: cp Makefile $WERCKER_OUTPUT_DIR/
deploy:
steps:
- script:
name: tools
code: make tools
- script:
name: targz
code: make targz OUTPUT_DIR=.
- script:
name: shasums
code: make shasums OUTPUT_DIR=.
- script:
name: release
code: make release OUTPUT_DIR=. GIT_COMMIT=$WERCKER_GIT_COMMIT