summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorDominic Evans <[email protected]>2021-08-23 23:58:55 +0100
committerDave Anderson <[email protected]>2021-08-24 10:14:24 -0700
commit2825d768aaaef27e854631354415484406b1bc92 (patch)
treeb320c95260816ee5c4fbb49e9a7c03b7aa9ebf16 /.travis.yml
parentb6bb9b5b82524122bcf27291ede32d1517a14ab8 (diff)
fix(test): update travis and e2e selfSignedCert fn
- add go.mod/go.sum - update .travis.yml to test against supported Go versions - drop golint from CI checks To satisfy modern Go crypto in the tlsrouter e2e_test.go: - bump RSA keysize to minimum 2048 bits - set NotBefore to valid recent timestamp - include CommonName in SANs Signed-off-by: Dominic Evans <[email protected]>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml11
1 files changed, 3 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml
index 56aafcb..a8d3a50 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,24 +1,19 @@
language: go
go:
-- "1.12"
-- "1.13"
+- "1.16.x"
+- "1.17.x"
- tip
os:
- linux
-install:
-- go get github.com/golang/lint/golint
-before_script:
script:
-- go get -t ./...
- go build ./...
- go test ./...
- go vet ./...
-- golint -set_exit_status .
jobs:
include:
- stage: deploy
- go: "1.13"
+ go: "1.16"
install:
- gem install fpm
script: