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
Show file tree
Hide file tree
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
Expand All @@ -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
Expand Up @@ -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
Expand Down
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.