-
Notifications
You must be signed in to change notification settings - Fork 454
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
chore: Remove dep ensure in CI #525
Changes from all commits
078e322
4d9f50a
1c230bd
c4c742c
e60501c
ad841ef
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,6 +64,3 @@ ehthumbs_vista.db | |
|
||
## Recycle Bin used on file shares | ||
$RECYCLE.BIN/ | ||
|
||
## Vendor packages | ||
vendor/ |
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -204,12 +204,18 @@ | |
template: "checkout", | ||
}], | ||
[ | ||
{ | ||
name: "dep-ensure", | ||
template: "dep-ensure", | ||
} | ||
], | ||
[ | ||
{ | ||
name: "python-tests", | ||
template: "python-tests", | ||
}, | ||
{ | ||
name: "build-suggestion-bo", | ||
template: "build-suggestion-bo", | ||
}, | ||
{ | ||
name: "build-suggestion-nasrl", | ||
template: "build-suggestion-nasrl", | ||
}, | ||
{ | ||
name: "build-manager", | ||
template: "build-manager", | ||
|
@@ -234,14 +240,6 @@ | |
name: "build-suggestion-hyperband", | ||
template: "build-suggestion-hyperband", | ||
}, | ||
{ | ||
name: "build-suggestion-bo", | ||
template: "build-suggestion-bo", | ||
}, | ||
{ | ||
name: "build-suggestion-nasrl", | ||
template: "build-suggestion-nasrl", | ||
}, | ||
{ | ||
name: "build-earlystopping-median", | ||
template: "build-earlystopping-median", | ||
|
@@ -255,8 +253,7 @@ | |
template: "create-pr-symlink", | ||
}, | ||
], | ||
[ // Setup cluster needs to run after build because we depend on the chart | ||
// created by the build statement. | ||
[ | ||
{ | ||
name: "setup-cluster", | ||
template: "setup-cluster", | ||
|
@@ -267,14 +264,6 @@ | |
name: "unit-test", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. unit tests not changed in v1alpha1? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We cannot change it, because v1alpha1 unit test should be run after the cluster is created. |
||
template: "unit-test", | ||
}, | ||
], | ||
[ | ||
{ | ||
name: "python-tests", | ||
template: "python-tests", | ||
}, | ||
], | ||
[ | ||
{ | ||
name: "run-tests", | ||
template: "run-tests", | ||
|
@@ -344,9 +333,6 @@ | |
"copy_artifacts", | ||
"--bucket=" + bucket, | ||
]), // copy-artifacts | ||
$.parts(namespace, name, overrides).e2e(prow_env, bucket).buildTemplate("dep-ensure", testWorkerImage, [ | ||
"test/scripts/v1alpha1/get-vendor-packages.sh", | ||
]), // dep ensure | ||
$.parts(namespace, name, overrides).e2e(prow_env, bucket).buildTemplate("build-manager", testWorkerImage, [ | ||
"test/scripts/v1alpha1/build-manager.sh", | ||
]), // build-manager | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove build template line also?