Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add cleanup to travis #1056

Merged
merged 1 commit into from
Oct 30, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ before_install:
- gem install bundler
# helm
- curl --retry 10 --retry-max-time 120 --retry-delay 5 -Lo- https://get.helm.sh/helm-v2.16.12-linux-amd64.tar.gz | tar xvzf -
- sudo mv ./linux-amd64/helm /usr/local/bin/
- sudo mv ./linux-amd64/helm /usr/local/bin/ && rm -rf ./linux-amd64
# yq
- curl --retry 10 --retry-max-time 120 --retry-delay 5 -L --remote-name https://github.com/mikefarah/yq/releases/download/3.2.1/yq_linux_amd64
- sudo mv yq_linux_amd64 /usr/local/bin/yq-3.2.1
- sudo chmod +x /usr/local/bin/yq-3.2.1
- sudo ln -s /usr/local/bin/yq-3.2.1 /usr/local/bin/yq
# shellcheck
- curl --retry 10 --retry-max-time 120 --retry-delay 5 -Lo- https://github.com/koalaman/shellcheck/releases/download/v0.7.1/shellcheck-v0.7.1.linux.x86_64.tar.xz | tar -xJf -
- sudo cp shellcheck-v0.7.1/shellcheck /usr/local/bin
- sudo cp shellcheck-v0.7.1/shellcheck /usr/local/bin && rm -rf shellcheck-v0.7.1
branches:
only:
- master
Expand Down