Alexander Huszagh
Alexander Huszagh
This isn't working anyway, even if it works locally for me... Still producing the full matrix: https://github.com/cross-rs/cross/actions/runs/3251818420/jobs/5337315491#step:4:8
> can I push to this branch? I think I have the solution Definitely. Any working solution is appreciated.
bors try --target x86_64-unknown-linux-gnu (Will cancel)
That shouldn't happen due to the fingerprinting done. The only thing I can imagine is if the modified timestamps aren't getting updated: https://github.com/cross-rs/cross/blob/8d8d84bc5f180b1e6b10121de6c072a618dc7f8e/src/docker/remote.rs#L549-L576
> I wonder if this is a wider issue, does updating a persistant volume also not work? It should, I'm going to take a deep look at this. We've been...
Manually verified this with running the code myself as well: ```bash $ /usr/bin/docker run --userns host --name cross-stable-x86_64-unknown-linux-gnu-16b8c-a8314ef7d-x86_64-unknown-linux-gnu-issue1016-bb6bb --rm -v cross-stable-x86_64-unknown-linux-gnu-16b8c-a8314ef7d:/cross -v /cross/cargo/bin -it ghcr.io/cross-rs/x86_64-unknown-linux-gnu:main bash $ cat cross/home/ahuszagh/Desktop/cross/issue1016/src/main.rs fn...
This shouldn't be happening, since `docker cp` is supposed to overwrite [files](https://docs.docker.com/engine/reference/commandline/cp/#description): > - SRC_PATH specifies a file > - `DEST_PATH` does not exist: the file is saved to a...
I think the best solution is the 2 step approach: otherwise, we will have to copy either a directory or tarballs **into** the container, then we can either have a...
Android 11 (`11.0.0_r48`) is currently failing with: ```bash out/soong/.bootstrap/bin/soong_build -t -l out/.module_paths/Android.bp.list -b out/soong -n out -d out/soong/build.ninja.d -globFile out/soong/.bootstrap/build-globs.ninja -o out/soong/build.ninja Android.bp error: hardware/interfaces/automotive/occupant_awareness/aidl/Android.bp:1:1: unrecognized module type "aidl_interface" error:...
I've added `ANDROID_SYSTEM_COMPLETE` which can be set to `1` to enable building the complete Android system, rather than just the minimal subset we use. It should be a more resilient...