Skip to content

Commit cb4fb97

Browse files
committedMar 31, 2021
Merge current branch v2.4 into master
2 parents d13d078 + 513f6e9 commit cb4fb97

Some content is hidden

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

41 files changed

+1827
-1394
lines changed
 

‎.golangci.toml

+9
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,15 @@
5252
metav1 = "k8s.io/apimachinery/pkg/apis/meta/v1"
5353
kubeerror = "k8s.io/apimachinery/pkg/api/errors"
5454

55+
[linters-settings.gomoddirectives]
56+
replace-allow-list = [
57+
"github.com/abbot/go-http-auth",
58+
"github.com/go-check/check",
59+
"github.com/gorilla/mux",
60+
"github.com/mailgun/minheap",
61+
"github.com/mailgun/multibuf",
62+
]
63+
5564
[linters]
5665
enable-all = true
5766
disable = [

‎.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616

1717
script:
1818
- echo "Skipping tests... (Tests are executed on SemaphoreCI)"
19-
- if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then make docs; fi
19+
- if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then travis_retry make docs-pull-images && make docs; fi
2020

2121
before_deploy:
2222
- >

0 commit comments

Comments
 (0)
Please sign in to comment.