Skip to content

Commit 78b144d

Browse files
committed
Merge branch 'master' of github.com:liquidweb/terraform-provider-liquidweb
2 parents 506d153 + feb0007 commit 78b144d

File tree

4 files changed

+20
-1
lines changed

4 files changed

+20
-1
lines changed

.travis.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
language: go
2+
3+
go:
4+
- 1.13.x
5+
6+
script:
7+
- make test
8+
- make build
9+
10+
deploy:
11+
provider: releases
12+
api_key: ${GITHUB_TOKEN}
13+
file: "terraform-provider-liquidweb"
14+
skip_cleanup: true
15+
on:
16+
tags: true

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ trace_jaeger:
2121
sh -c "while [ 1 ]; do nc -ul 5775 < pipe | tee outgoing.log | nc -u jaeger 5775 | tee pipe incoming.log; done"
2222

2323
build: clean
24-
go build
24+
go build -o terraform-provider-liquidweb
2525

2626
clean:
2727
rm -f terraform-provider-liquidweb

go.mod

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
module github.com/liquidweb/terraform-provider-liquidweb
22

3+
replace git.apache.org/thrift.git => github.com/apache/thrift v0.12.0
4+
35
require (
46
github.com/hashicorp/terraform v0.12.2
57
github.com/liquidweb/go-lwApi v0.0.0-20190605172801-52a4864d2738

go.sum

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ github.com/aliyun/aliyun-tablestore-go-sdk v4.1.2+incompatible/go.mod h1:LDQHRZy
2828
github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239/go.mod h1:2FmKhYUyUczH0OGQWaF5ceTx0UBShxjsH6f8oGKYe2c=
2929
github.com/antchfx/xpath v0.0.0-20190129040759-c8489ed3251e/go.mod h1:Yee4kTMuNiPYJ7nSNorELQMr1J33uOpXDMByNYhvtNk=
3030
github.com/antchfx/xquery v0.0.0-20180515051857-ad5b8c7a47b0/go.mod h1:LzD22aAzDP8/dyiCKFp31He4m2GPjl0AFyzDtZzUu9M=
31+
github.com/apache/thrift v0.12.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ=
3132
github.com/apparentlymart/go-cidr v1.0.0 h1:lGDvXx8Lv9QHjrAVP7jyzleG4F9+FkRhJcEsDFxeb8w=
3233
github.com/apparentlymart/go-cidr v1.0.0/go.mod h1:EBcsNrHc3zQeuaeCeCtQruQm+n9/YjEn/vI25Lg7Gwc=
3334
github.com/apparentlymart/go-dump v0.0.0-20180507223929-23540a00eaa3/go.mod h1:oL81AME2rN47vu18xqj1S1jPIPuN7afo62yKTNn3XMM=

0 commit comments

Comments
 (0)