cargo-ibuild 1.1.1

cargo-ibuild
# cargo-ibuild #


## Attention ##


**!!! This is an internal enterprise application and needs to be on the company intranet to be used. !!!**

## Install ##


``` bash
cargo install cargo-ibuild
```

OR

``` bash
# Enter source code directory

cargo install --path .
```


## Usage ##


``` bash
# Build for target x86_64-unknown-linux-gnu in CentOS 7

cargo ibuild --target x64

# Build for target aarch64-unknown-linux-gnu in CentOS 7

cargo ibuild --target arm64

# Run bash in docker

cargo ibuild run --target x64
cargo ibuild run --target arm64

# Exec command in docker

cargo ibuild exec --target x64 uname -m
cargo ibuild exec --target arm64 uname -m
```