File tree 8 files changed +28
-12
lines changed
8 files changed +28
-12
lines changed Original file line number Diff line number Diff line change 1
1
language : go
2
2
go :
3
- - 1.7
4
- - 1.8
3
+ - 1.x
5
4
sudo : false
6
- install :
7
- - go get github.com/bmizerany/assert
8
5
notifications :
9
6
email : false
10
7
Original file line number Diff line number Diff line change 3
3
4
4
Converts a stream of newline separated json data to csv format.
5
5
6
- [ ![ Build Status] ( https://travis-ci.org/jehiah/json2csv.png?branch=master )] ( https://travis-ci.org/jehiah/json2csv )
6
+ [ ![ Build Status] ( https://travis-ci.org/jehiah/json2csv.png?branch=master )] ( https://travis-ci.org/jehiah/json2csv ) [ ![ GitHub release ] ( https://img.shields.io/github/release/jehiah/json2csv.svg )] ( https://github.com/jehiah/json2csv/releases/latest )
7
7
8
8
9
9
Installation
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
7
7
echo " working dir $DIR "
8
8
9
9
echo " ... running tests"
10
- go test|| exit 1
10
+ go test ./... || exit 1
11
11
12
12
arch=$( go env GOARCH)
13
13
version=$( cat $DIR /version.go | grep " const VERSION" | awk ' {print $NF}' | sed ' s/"//g' )
@@ -17,15 +17,17 @@ for os in linux darwin; do
17
17
echo " ... building v$version for $os /$arch "
18
18
BUILD=$( mktemp -d -t json2csv)
19
19
TARGET=" json2csv-$version .$os -$arch .$goversion "
20
- GOOS=$os GOARCH=$arch CGO_ENABLED=0 go build
21
20
mkdir -p $BUILD /$TARGET
22
- cp json2csv $BUILD /$TARGET /json2csv
21
+ GOOS=$os GOARCH=$arch CGO_ENABLED=0 go build -o $BUILD /$TARGET /json2csv
22
+
23
23
pushd $BUILD > /dev/null
24
24
tar czvf $TARGET .tar.gz $TARGET
25
25
if [ -e $DIR /dist/$TARGET .tar.gz ]; then
26
26
echo " ... WARNING overwriting dist/$TARGET .tar.gz"
27
27
fi
28
- mv $TARGET .tar.gz $DIR /dist
28
+
29
+ mkdir -p $DIR /dist
30
+ mv $TARGET .tar.gz $DIR /dist/
29
31
echo " ... built dist/$TARGET .tar.gz"
30
32
popd > /dev/null
31
33
done
Original file line number Diff line number Diff line change
1
+ module github.com/jehiah/json2csv
2
+
3
+ go 1.13
4
+
5
+ require github.com/stretchr/testify v1.4.0
Original file line number Diff line number Diff line change
1
+ github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8 =
2
+ github.com/davecgh/go-spew v1.1.0 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
3
+ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM =
4
+ github.com/pmezard/go-difflib v1.0.0 /go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4 =
5
+ github.com/stretchr/objx v0.1.0 /go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME =
6
+ github.com/stretchr/testify v1.4.0 h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk =
7
+ github.com/stretchr/testify v1.4.0 /go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4 =
8
+ gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM =
9
+ gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 /go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0 =
10
+ gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw =
11
+ gopkg.in/yaml.v2 v2.2.2 /go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI =
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ import (
10
10
"log"
11
11
"math"
12
12
"os"
13
+ "runtime"
13
14
"strings"
14
15
"unicode/utf8"
15
16
)
@@ -29,7 +30,7 @@ func main() {
29
30
flag .Parse ()
30
31
31
32
if * showVersion {
32
- fmt .Printf ("json2csv %s \n " , VERSION )
33
+ fmt .Printf ("json2csv v%s (built w/%s) \n " , VERSION , runtime . Version () )
33
34
return
34
35
}
35
36
Original file line number Diff line number Diff line change 8
8
"os"
9
9
"testing"
10
10
11
- "github.com/bmizerany /assert"
11
+ "github.com/stretchr/testify /assert"
12
12
)
13
13
14
14
func TestGetTopic (t * testing.T ) {
Original file line number Diff line number Diff line change 1
1
package main
2
2
3
- const VERSION = "1.2.0 "
3
+ const VERSION = "1.2.1 "
You can’t perform that action at this time.
0 commit comments