gotty/wercker.yml

33 lines
704 B
YAML
Raw Permalink Normal View History

box: golang:1.9.0
2015-08-16 22:00:38 +00:00
build:
steps:
- setup-go-workspace
- script:
2015-10-12 02:57:14 +00:00
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/
2015-08-16 22:00:38 +00:00
deploy:
steps:
2015-10-12 02:57:14 +00:00
- script:
name: tools
code: make tools
2015-10-18 02:57:30 +00:00
- script:
name: targz
code: make targz OUTPUT_DIR=.
- script:
name: shasums
code: make shasums OUTPUT_DIR=.
2015-10-12 02:57:14 +00:00
- script:
name: release
code: make release OUTPUT_DIR=. GIT_COMMIT=$WERCKER_GIT_COMMIT