gotty/wercker.yml
Iwasaki Yudai 6ab3093956 Pickup random port when port option is 0
With upgrading go to go1.9 to use http.Server.ServeTLS()
2017-08-26 17:23:04 +09:00

33 lines
704 B
YAML

box: golang:1.9.0
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