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

ci: temporarily disable some CI jobs #6

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
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
454 changes: 1 addition & 453 deletions .drone/drone.yml

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions .drone/pipelines/build_images.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ local locals = {
};

[
// TODO(rfratto): The following are temporarily diasbled as grafana/alloy
// gets set up.

/*
pipelines.linux('Create Linux build image') {
trigger: locals.on_build_image_tag,
steps: [{
Expand Down Expand Up @@ -88,4 +92,5 @@ local locals = {
host: { path: '//./pipe/docker_engine/' },
}],
},
*/
]
7 changes: 7 additions & 0 deletions .drone/pipelines/publish.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,12 @@ local windows_containers_jobs = std.map(function(container) (
}
), windows_containers);

// TODO(rfratto): The following are TEMPORARILY disabled as grafana/alloy gets
// set up. Remove the line below in favor of the comment block to reenable the
// publish jobs.
[]

/*
linux_containers_jobs + windows_containers_jobs + [
pipelines.linux('Deploy to deployment_tools') {
trigger: {
Expand Down Expand Up @@ -196,3 +202,4 @@ linux_containers_jobs + windows_containers_jobs + [
}],
},
]
*/
Loading