forked from yudai/gotty
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwercker.yml
More file actions
32 lines (30 loc) · 704 Bytes
/
wercker.yml
File metadata and controls
32 lines (30 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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