feat: Add platform arg to force building a specific architecture
This commit is contained in:
parent
20d1950530
commit
75eae89e4a
22 changed files with 408 additions and 71 deletions
|
|
@ -24,7 +24,10 @@ impl CiDriver for LocalDriver {
|
|||
|
||||
fn generate_tags(opts: &GenerateTagsOpts) -> miette::Result<Vec<String>> {
|
||||
trace!("LocalDriver::generate_tags({opts:?})");
|
||||
let os_version = Driver::get_os_version(opts.oci_ref)?;
|
||||
let os_version = Driver::get_os_version()
|
||||
.oci_ref(opts.oci_ref)
|
||||
.platform(opts.platform)
|
||||
.call()?;
|
||||
let timestamp = blue_build_utils::get_tag_timestamp();
|
||||
let short_sha = commit_sha();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue