-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathwercker.yml
62 lines (57 loc) · 1.78 KB
/
wercker.yml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
box: wercker/golang
# Build definition
build:
# The steps that will be executed on build
steps:
# Sets the go workspace and places you package
# at the right place in the workspace tree
- setup-go-workspace
# Gets the dependencies
- script:
name: go get
code: |
cd $WERCKER_SOURCE_DIR
go version
go get ./...
# Build the project
- script:
name: go build
code: |
cd $WERCKER_SOURCE_DIR/gomfweb
go build -v github.com/andyleap/microformats/gomfweb
cd $WERCKER_SOURCE_DIR/gomf
go build -v github.com/andyleap/microformats/gomf
# Test the project
# - script:
# name: go test
# code: |
# go test
- script:
name: copy output
code: |-
cp "$WERCKER_SOURCE_DIR/gomfweb/gomfweb" "$WERCKER_OUTPUT_DIR/gomfweb"
cp "$WERCKER_SOURCE_DIR/gomf/gomf" "$WERCKER_OUTPUT_DIR/gomf"
deploy:
steps:
- add-to-known_hosts:
hostname: vendaria.net
- mktemp:
envvar: PRIVATEKEY_PATH
- create-file:
name: write key
filename: $PRIVATEKEY_PATH
content: $VENDARIA_PRIVATE
overwrite: true
hide-from-log: true
- script:
name: stop application
code: ssh -i $PRIVATEKEY_PATH -l vendan -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no vendaria.net sudo stop gomfweb
- script:
name: transfer application
code: |
pwd
ls -la
scp -i $PRIVATEKEY_PATH -o StrictHostKeyChecking=no -o UserKnownHostsFile=no gomfweb [email protected]:/var/gomfweb/gomfweb
- script:
name: start application
code: ssh -i $PRIVATEKEY_PATH -l vendan -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no vendaria.net sudo start gomfweb