Skip to content

Commit d76a402

Browse files
committed
Initial commit with basic support for remote docker.
This supports the volume-based structure, and uses some nice optimizations to ensure that only the desired toolchain and cargo items are copied over. It also uses drops to ensure scoped deletion of resources, to avoid complex logic ensuring their cleanup. It also supports persistent data volumes, through `cross-util`. In order to setup a persistent data volume, use: ```bash cross-util create-crate-volume --target arm-unknown-linux-gnueabihf ``` Make sure you provide your `DOCKER_HOST` or correct engine type to ensure these are being made on the remote host. Then, run your command as before: ```bash CROSS_REMOTE=true cross build --target arm-unknown-linux-gnueabihf ``` Finally, you can clean up the generated volume using: ```bash cross-util remove-crate-volume --target arm-unknown-linux-gnueabihf ``` A few other utilities are present in `cross-util`: - `list-volumes`: list all volumes created by cross. - `remove-volumes`: remove all volumes created by cross. - `prune-volumes`: prune all volumes unassociated with a container. - `list-containers`: list all active containers created by cross. - `remove-containers`: remove all active containers created by cross. The initial implementation was done by Marc Schreiber, https://github.com/schrieveslaach. Fixes cross-rs#248. Fixes cross-rs#273. Closes cross-rs#449.
1 parent 239e8cb commit d76a402

10 files changed

+1397
-180
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
77

88
### Added
99

10+
- #785 - added support for remote container engines through data volumes. also adds in utility to commands to create and remove persistent data volumes.
1011
- #775 - forward Cargo exit code to host
1112
- #772 - added `CROSS_CONTAINER_OPTS` environment variable to replace `DOCKER_OPTS`.
1213
- #767 - added the `cross-util` and `cross-dev` commands.

Cargo.lock

+58
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ serde_json = "1"
2828
serde_yaml = { version = "0.8", optional = true }
2929
serde_ignored = "0.1.2"
3030
shell-words = "1.1.0"
31+
sha1_smol = "1.0.0"
32+
tempfile = "3.3.0"
3133

3234
[target.'cfg(not(windows))'.dependencies]
3335
nix = { version = "0.24", default-features = false, features = ["user"] }

0 commit comments

Comments
 (0)