mirror of
https://github.com/aquasecurity/kube-bench.git
synced 2024-11-14 20:00:19 +00:00
5f34058dc7
* add yamllint command to travis CI installs and runs a linter across the YAML in the project to ensure consistency in the written YAML. this uses yamllint and the default yamllint config with "truthy" and "line-length" disabled. * run dos2unix on CRLF files * YAMLLINT: remove trailing spaces * YAMLLint: add YAML document start * YAMLLint: too many spaces around bracket * YAMLLint: fix indentation * YAMLLint: remove duplicate key * YAMLLint: newline at end of file * YAMLLint: Too few spaces after comma * YAMLLint: too many spaces after colon
42 lines
1.4 KiB
YAML
42 lines
1.4 KiB
YAML
---
|
|
language: go
|
|
|
|
services:
|
|
- docker
|
|
|
|
notifications:
|
|
email: false
|
|
|
|
before_install:
|
|
- sudo apt-get -qq update
|
|
- sudo apt-get install -y rpm
|
|
- pip install --user yamllint==1.18.0
|
|
- gem install --no-ri --no-rdoc fpm
|
|
- go get -t -v ./...
|
|
|
|
script:
|
|
- yamllint -c ./.yamllint.yaml .
|
|
- GO111MODULE=on go test ./...
|
|
- IMAGE_NAME=kube-bench make build-docker
|
|
- docker run -v `pwd`:/host kube-bench install
|
|
- test -d cfg
|
|
- test -f kube-bench
|
|
- make tests
|
|
- make integration-tests
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|
|
deploy:
|
|
- provider: script
|
|
skip_cleanup: true
|
|
script: curl -sL https://git.io/goreleaser | bash
|
|
on:
|
|
tags: true
|
|
condition: "$TRAVIS_OS_NAME = linux"
|
|
|
|
env:
|
|
global:
|
|
secure: mb8AYZKDo6hkKN+2F9ldXcw27Yn2AfxpXvKlD8GD7NdGOI+TaiSFbE0I+qqTa/1DqcRekCQwqN7OG/17s9JDkgzUXYuYUGlVUOM4WbeJoSlzJFIOh9r9R/JddluYJohypgkE20IBHIrEHq5sY0Nn1Pl9WgSQFaVcQjxkX009AOuVjN0o5HcoXsb5hAzvHrpoSPkcSSqq7VWab60TgUttVaRlZSGwGdSYQEqk5TdO0hWHuXyxaaEPybgFIyZLLbxPS4JmMz8n3Sngetpw9Jgc+V9Fc7wKXpjvZZ33SpArG5p5ZFFu2YQOXFLZth9qtQOjduQ2gU1kHN6WjWnJ8QX2s8vmU38Tk19kd5i+mz9dvc87IdBvmTIqVYSpM6AAYa2osBGP3f97Rj2S68lTad4ecSVyHdsjz56vdE3ZH4wskswmogbKkVdvO4biPHxT6odszBxYLEJuRJyZ7ckXd52MCzqAUPrw7YUuH8N1mLIlf7V5bW5R+q4DlKw774zxnHiWrymXGvlINSrB0qxBn8Fii6ib+Pacl3PuqSumCcgIHlVjqrzIXaqcTMn2/ABZYC99mralGvwA/EgNa8CBKB5evMCEwWa5Ntvcs2I2DFcO5Q2WzN4H0YScyAzzCzK7/3hWJE/rUIJntwiSXkV3MSa1yxWSGGH8F1lcz+lzgTBm/MU=
|
|
matrix:
|
|
- GO111MODULE=on
|