summaryrefslogtreecommitdiffhomepage
path: root/.goreleaser.yml
diff options
context:
space:
mode:
authorFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2017-08-01 22:16:07 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2017-08-02 11:00:17 +0900
commit0723aa81489beb4ae5b862c34742be063a0d56e1 (patch)
tree5ba93d1883826314fb3df3cfe404893877d03a1e /.goreleaser.yml
parent649a42f47c2c39112b54d565fc8f21b96223226d (diff)
create github releases with binaries
https://github.com/goreleaser/goreleaser Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to '.goreleaser.yml')
-rw-r--r--.goreleaser.yml26
1 files changed, 26 insertions, 0 deletions
diff --git a/.goreleaser.yml b/.goreleaser.yml
new file mode 100644
index 00000000..72c658a2
--- /dev/null
+++ b/.goreleaser.yml
@@ -0,0 +1,26 @@
+#
+# .goreleaser.yml
+# Build customization
+builds:
+ - main: ./gobgp/
+ binary: gobgp
+ goos:
+ - linux
+ goarch:
+ - amd64
+ - 386
+ - arm
+
+ - main: ./gobgpd/
+ binary: gobgpd
+ goos:
+ - linux
+ goarch:
+ - amd64
+ - 386
+ - arm
+
+archive:
+ files:
+ - LICENSE
+ - README.md