Skip to content

[Fix] running a vendored build+tests on gentoo fails with 'RUSTUP=0 VENDORED=1...

Jonas Toth requested to merge jonastoth/ion:fix_rustupless_tests into master

Using cargo vendor helps a lot with building and on the way to a full gentoo-ebuild. Running tests was not possible, again due to the RUSTUP line touched before.

Current workflow to build the project on gentoo:

$ make clean
$ make vendor
$ RUSTUP=0 VENDORED=1 make
$ RUSTUP=0 VENDORED=1 make tests

I believe this can be integrated into a package, given the vendor.tar.gz is downloadable.

Merge request reports