Skip to content

Commit

Permalink
checksums on release
Browse files Browse the repository at this point in the history
  • Loading branch information
clinta committed Aug 29, 2016
1 parent 447ad53 commit 8750c0d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
9 changes: 8 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,19 @@ install:

script:
- mv $GOPATH/bin/docker-vxlan-plugin ./
- md5sum docker-vxlan-plugin > md5.txt
- sha256sum docker-vxlan-plugin > sha256.txt
- sha512sum docker-vxlan-plugin > sha512.txt

deploy:
- provider: releases
skip_cleanup: true
api_key:
secure: u33SSTfOE46yZ93W1Sh7xxemPf0ofebvygIGaR0cYiyamc98cRSYghNRL7enDupYprzrHesws7ERXkIOXFcqoHrfuxUnzzQAntlQsFNS/h/jieSDPH37l6tISJGYWj41anZ0c5lZOsurTpqKqB5g5Cq/+PPk9xn9a1bKQaH2SoLbCjgsJ9S/VlbX6FsduYnpS7Uo2dqxmJA1HkxCxebZvi/Iv4uS7P9fV4/vOYjftFrnPsDPkQbqbtsun1aeGf/hveSxe0ztCyTd0quTmhH5yxzg2cR9KVHrkTXg+qHqDrMcqdwzYP3zrx9EB//lsxwFPlwQUiIASebF49wRWst8FkQA4aAnpJN002/jeaKTaAqhwXLRNROFqFGioS2/WacHUQvAwo6ayiFdfiCkvM/yiI9mnroK0z6PAqZJqA9pVpF+dVcSJp4NDFXVdCGqA80YYYLES74zWtIYp/lwqWXOWc//Q7hWF/0Wp2uOlqzePbstItlXZeT6jvrJUEEoZ2dqoguaBXBxmqlwjVWMPuzvhwHEjg3bFmBAV8EPn8hg8z29zwWhbcTY40HWRWSPh53dS1Y9y192QcXcaDK7ecMahUy6WhYkxfyOvfYHvioj487tp+DYQywzk8EeUU2Sl+HFPwbMDLTtj2EjOFuMXMsy8mlpoc9ci4lkzc65kXoKWi4=
file: docker-vxlan-plugin
file:
- docker-vxlan-plugin
- md5.txt
- sha256.txt
- sha512.txt
on:
tags: true
12 changes: 6 additions & 6 deletions main.go
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
package main

import (
"github.com/TrilliumIT/docker-vxlan-plugin/vxlan"
"os"
"github.com/TrilliumIT/docker-vxlan-plugin/vxlan"

log "github.com/Sirupsen/logrus"
"github.com/docker/go-plugins-helpers/network"
"github.com/codegangsta/cli"
"github.com/docker/go-plugins-helpers/network"
)

const (
version = "0.7"
version = "0.7.1"
)

func main() {
Expand Down Expand Up @@ -48,10 +48,10 @@ func Run(ctx *cli.Context) {
log.SetLevel(log.DebugLevel)
}
log.SetFormatter(&log.TextFormatter{
ForceColors: false,
DisableColors: true,
ForceColors: false,
DisableColors: true,
DisableTimestamp: false,
FullTimestamp: true,
FullTimestamp: true,
})
d, err := vxlan.NewDriver(ctx.String("scope"), ctx.String("vtepdev"))
if err != nil {
Expand Down

0 comments on commit 8750c0d

Please sign in to comment.