Skip to content

Commit

Permalink
Merge pull request #23 from HeavyWombat/go-mod
Browse files Browse the repository at this point in the history
Switch to Go 1.11 modules
  • Loading branch information
HeavyWombat authored Dec 24, 2018
2 parents 664bd6b + 337aad8 commit c9c97f2
Showing 681 changed files with 133 additions and 424,929 deletions.
8 changes: 3 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
---
language: go
go:
- 1.8.x
- 1.9.x
- 1.10.x
- 1.11.x

install:
- curl --silent --location https://goo.gl/g1CpPX | bash -s v1.0.4

script:
- make --jobs test
- make test

after_success:
- for FILE in $(find . -type f -name "*.coverprofile" 2>/dev/null); do echo >> $FILE; done
@@ -27,5 +25,5 @@ deploy:
file_glob: true
file: binaries/*
on:
condition: $TRAVIS_GO_VERSION =~ ^1\.10
condition: $TRAVIS_GO_VERSION =~ ^1\.11
tags: true
310 changes: 0 additions & 310 deletions Gopkg.lock

This file was deleted.

10 changes: 0 additions & 10 deletions Gopkg.toml

This file was deleted.

7 changes: 2 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -38,16 +38,13 @@ lint:
gocyclo:
$(dir $(realpath $(firstword $(MAKEFILE_LIST))))scripts/go-cyclo.sh

megacheck:
$(dir $(realpath $(firstword $(MAKEFILE_LIST))))scripts/megacheck.sh

misspell:
$(dir $(realpath $(firstword $(MAKEFILE_LIST))))scripts/misspell.sh

ginkgo:
ginkgo -r --randomizeAllSpecs --randomizeSuites --failOnPending --trace --race --nodes=4 --compilers=2 --cover
GO111MODULE=on ginkgo -r --randomizeAllSpecs --randomizeSuites --failOnPending --trace --race --nodes=4 --compilers=2 --cover

test: vet fmt lint gocyclo megacheck misspell ginkgo
test: vet fmt lint gocyclo misspell ginkgo

install: test
@$(dir $(realpath $(firstword $(MAKEFILE_LIST))))/scripts/compile-version.sh --only-local
32 changes: 32 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
module github.com/HeavyWombat/dyff

require (
github.com/BurntSushi/toml v0.3.1 // indirect
github.com/HeavyWombat/ytbx v0.0.0-20181127165024-02ce8b0d042f
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/gorilla/context v1.1.1 // indirect
github.com/gorilla/mux v1.6.2 // indirect
github.com/homeport/gonvenience v0.0.0-20181203214445-675de31aa533
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/lucasb-eyer/go-colorful v0.0.0-20180526135729-345fbb3dbcdb
github.com/mattn/go-ciede2000 v0.0.0-20170301095244-782e8c62fec3 // indirect
github.com/mattn/go-isatty v0.0.4 // indirect
github.com/mitchellh/go-ps v0.0.0-20170309133038-4fdf99ab2936 // indirect
github.com/mitchellh/hashstructure v1.0.0
github.com/onsi/ginkgo v1.7.0
github.com/onsi/gomega v1.4.3
github.com/pkg/errors v0.8.0
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/sergi/go-diff v1.0.0
github.com/spf13/cobra v0.0.3
github.com/spf13/pflag v1.0.3 // indirect
github.com/stretchr/testify v1.2.2 // indirect
github.com/texttheater/golang-levenshtein v0.0.0-20180516184445-d188e65d659e
github.com/virtuald/go-ordered-json v0.0.0-20170621173500-b18e6e673d74 // indirect
golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9
golang.org/x/net v0.0.0-20181207154023-610586996380 // indirect
golang.org/x/sync v0.0.0-20181108010431-42b317875d0f // indirect
golang.org/x/sys v0.0.0-20181211161752-7da8ea5c8182 // indirect
gopkg.in/DATA-DOG/go-sqlmock.v1 v1.3.0 // indirect
gopkg.in/yaml.v2 v2.2.2
)
Loading

0 comments on commit c9c97f2

Please sign in to comment.