You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This will make sure we are installing latest
pipeline release instead of the first tag on releases
This will fix the e2e tests failures observed in
#1754 with error message
like `json: unknown field "artifacts"`
Copy file name to clipboardExpand all lines: test/e2e-common.sh
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ function install_pipeline_crd() {
35
35
if [[ -n${RELEASE_YAML} ]];then
36
36
latestreleaseyaml=${RELEASE_YAML}
37
37
else
38
-
latestreleaseyaml=$(curl -s https://api.github.com/repos/tektoncd/pipeline/releases|python -c "import sys, json;x=json.load(sys.stdin);ass=x[0]['assets'];print([ x['browser_download_url'] for x in ass if x['name'] == 'release.yaml'][0])")
0 commit comments