travis: Explain openssl key+cert generation

This commit is contained in:
Robert Swain 2017-06-08 14:47:56 +02:00
parent 19e0c274de
commit f68ef67cb6

View file

@ -21,6 +21,7 @@ install:
- go get github.com/golang/lint/golint
- go get github.com/fzipp/gocyclo
# Generate a self-signed X.509 certificate for TLS.
before_script:
- openssl req -x509 -newkey rsa:4096 -keyout server.key -out server.crt -days 365 -nodes -subj /CN=localhost
@ -35,4 +36,3 @@ notifications:
on_success: change # always|never|change
on_failure: always
on_start: never