feat: Create RunDriver (#196)

This will be used for running containers for various tasks. There will
be a way to take all output from the process and a way to display output
from a running container like our builds have.
This commit is contained in:
Gerald Pinder 2024-07-05 19:20:38 -04:00 committed by GitHub
parent 1a348f8137
commit 784be9869a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 510 additions and 98 deletions

View file

@ -2,9 +2,11 @@ use clap::ValueEnum;
pub use build::*;
pub use inspect::*;
pub use run::*;
mod build;
mod inspect;
mod run;
#[derive(Debug, Copy, Clone, Default, ValueEnum)]
pub enum CompressionType {