-
Notifications
You must be signed in to change notification settings - Fork 4
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
make option --arch optional #24
base: main
Are you sure you want to change the base?
Changes from all commits
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 |
---|---|---|
|
@@ -78,7 +78,6 @@ pub fn generate_monitor_pipeline( | |
("project", project.to_owned()), | ||
("package", package.to_owned()), | ||
("repository", repo.to_owned()), | ||
("arch", arch.to_owned()), | ||
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. this doesn't actually work, a bunch of commands here do actually need
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. Thank you. I tried
|
||
]; | ||
|
||
let mut monitor_args = vec![ | ||
|
@@ -96,7 +95,9 @@ pub fn generate_monitor_pipeline( | |
if let PipelineDownloadBinaries::OnSuccess { build_results_dir } = | ||
&options.download_binaries | ||
{ | ||
let mut download_args = vec![("build-results-dir", build_results_dir.clone())]; | ||
let mut download_args = vec![("build-results-dir", build_results_dir.clone()), | ||
("arch", arch.to_owned()), | ||
]; | ||
download_args.extend_from_slice(&common_args); | ||
script.push(generate_command( | ||
"download-binaries".to_owned(), | ||
|
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.
If it's optional make it an
Option