Skip to content

Commit 8e0d856

Browse files
authored
Update build (prometheus#543)
* Drop /vendor dir. * Simplify mixin build steps. * Bump Go modules. Signed-off-by: Ben Kochie <[email protected]>
1 parent 42ea20e commit 8e0d856

File tree

829 files changed

+56
-271016
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

829 files changed

+56
-271016
lines changed

.circleci/config.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,14 @@ jobs:
5050
- run: sudo pip install codespell
5151
- run: codespell --skip=".git,./vendor,ttar,Makefile.common" -L uint,ist,keypair
5252

53-
5453
mixin:
5554
executor: golang
5655

5756
steps:
5857
- checkout
59-
- run: cd mysqld-mixin; go install github.com/monitoring-mixins/mixtool/cmd/mixtool@latest
60-
- run: cd mysqld-mixin; go install github.com/google/go-jsonnet/cmd/jsonnetfmt@latest
61-
- run: cd mysqld-mixin; make lint build
58+
- run: go install github.com/monitoring-mixins/mixtool/cmd/mixtool@latest
59+
- run: go install github.com/google/go-jsonnet/cmd/jsonnetfmt@latest
60+
- run: make -C mysqld-mixin lint build
6261

6362
workflows:
6463
version: 2

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@
88
*-stamp
99
.idea
1010
*.iml
11+
/vendor

.golangci.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
run:
2-
modules-download-mode: vendor
3-
1+
---
42
# Run only staticcheck for now. Additional linters will be enabled one-by-one.
53
linters:
64
enable:

.promu.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go:
55
repository:
66
path: github.com/prometheus/mysqld_exporter
77
build:
8-
flags: -mod=vendor -a -tags netgo
8+
flags: -a -tags netgo
99
ldflags: |
1010
-X github.com/prometheus/common/version.Version={{.Version}}
1111
-X github.com/prometheus/common/version.Revision={{.Revision}}

go.mod

+5-7
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,16 @@
11
module github.com/prometheus/mysqld_exporter
22

33
require (
4-
github.com/DATA-DOG/go-sqlmock v1.4.1
4+
github.com/DATA-DOG/go-sqlmock v1.5.0
55
github.com/go-kit/kit v0.10.0
6-
github.com/go-sql-driver/mysql v1.5.0
7-
github.com/gopherjs/gopherjs v0.0.0-20190430165422-3e4dfb77656c // indirect
8-
github.com/prometheus/client_golang v1.6.0
6+
github.com/go-sql-driver/mysql v1.6.0
7+
github.com/prometheus/client_golang v1.10.0
98
github.com/prometheus/client_model v0.2.0
10-
github.com/prometheus/common v0.10.0
9+
github.com/prometheus/common v0.20.0
1110
github.com/satori/go.uuid v1.2.0
12-
github.com/smartystreets/assertions v1.0.0 // indirect
1311
github.com/smartystreets/goconvey v1.6.4
1412
gopkg.in/alecthomas/kingpin.v2 v2.2.6
15-
gopkg.in/ini.v1 v1.57.0
13+
gopkg.in/ini.v1 v1.62.0
1614
)
1715

1816
go 1.13

go.sum

+45-25
Large diffs are not rendered by default.

vendor/github.com/DATA-DOG/go-sqlmock/.gitignore

-4
This file was deleted.

vendor/github.com/DATA-DOG/go-sqlmock/.travis.yml

-27
This file was deleted.

vendor/github.com/DATA-DOG/go-sqlmock/LICENSE

-28
This file was deleted.

vendor/github.com/DATA-DOG/go-sqlmock/README.md

-259
This file was deleted.

0 commit comments

Comments
 (0)