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

Fix commands to download latest release version of chectl in E2E happy path tests PR job #14182

Merged
merged 3 commits into from Aug 9, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion e2e/jenkins/crw-ci/pr-check/k8s/Jenkinsfile
Expand Up @@ -38,7 +38,8 @@ pipeline {
steps {
script {
sh """
wget --no-verbose https://github.com/che-incubator/chectl/releases/latest/download/chectl-linux \\
# wget --no-verbose https://github.com/che-incubator/chectl/releases/latest/download/chectl-linux
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it quick fix and you plan to rework it to use latest chectl?
there is some archive for linux[1] but I'm not sure how it's supposed to be used.
@benoitf you know more, looks like README.md contains outdated info

[1] https://github.com/che-incubator/chectl/releases/download/20190809124036/chectl-v0.0.20190809-next.3bed253-linux-x64.tar.gz

Copy link
Contributor Author

@dmytro-ndp dmytro-ndp Aug 9, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's quick fix of PR check pipeline job.

wget --no-verbose https://github.com/che-incubator/chectl/releases/download/20190802065601/chectl-linux
-O ${WORKSPACE}/chectl

sudo chmod +x ${WORKSPACE}/chectl
Expand Down