Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move jaeger code base to go modules #1546

Closed
wants to merge 11 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 11 additions & 19 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,47 +1,39 @@
sudo: required

language: go
go_import_path: github.com/jaegertracing/jaeger
go: 1.12.4

dist: trusty

matrix:
include:
- go: "1.12.1"
env:
- env:
- TESTS=true
- COVERAGE=true
- go: "1.12.1"
env:
- env:
- PROTO_GEN_TEST=true
- go: "1.12.1"
env:
- env:
- ALL_IN_ONE=true
- go: "1.12.1"
env:
- env:
- CROSSDOCK=true
- go: "1.12.1"
env:
- env:
- DOCKER=true
- DEPLOY=true
- go: "1.12.1"
env:
- env:
- ES_INTEGRATION_TEST=true
- go: "1.12.1"
env:
- env:
- KAFKA_INTEGRATION_TEST=true
- go: "1.12.1"
env:
- env:
- CASSANDRA_INTEGRATION_TEST=true
- go: "1.12.1"
env:
- env:
- HOTROD=true

services:
- docker

env:
global:
- GO111MODULE=on
- DOCKER_COMPOSE_VERSION=1.8.0
- COMMIT=${TRAVIS_COMMIT::8}
# DOCKER_USER
Expand Down
13 changes: 7 additions & 6 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ We gratefully welcome improvements to documentation as well as to code.

## Getting Started

This library uses [dep](https://golang.github.io/dep) to manage dependencies.
This library uses [go modules](https://golang.org/cmd/go/#hdr-Modules__module_versions__and_more) to manage dependencies.

To get started, make sure you clone the Git repository into the correct location `github.com/jaegertracing/jaeger` relative to `$GOPATH`:
To get started, clone the Git repository into your preferred location:

```
mkdir -p $GOPATH/src/github.com/jaegertracing
cd $GOPATH/src/github.com/jaegertracing
mkdir -p $HOME/devel
cd $HOME/devel
git clone git@github.com:jaegertracing/jaeger.git jaeger
cd jaeger
```
Expand All @@ -28,7 +28,7 @@ Then install dependencies and run the tests:

```
git submodule update --init --recursive
dep ensure
go mod download
make test
```

Expand Down Expand Up @@ -84,7 +84,8 @@ github.com/jaegertracing/jaeger
jaeger/
sampling/
zipkincore/
Gopkg.toml - Dep is the project's dependency manager
go.mod - Go module definition file
go.sum - Go module sum file
mkdocs.yml - MkDocs builds the documentation in docs/
```

Expand Down
Loading