e3375626d5
The way this tries to replace the system Rust is hacky and actually I realized belatedly I may have broken it recently; basically `installdeps.sh` re-adds the system one, and it's hard to be sure with our current buildsystem we're using the newer one from `$PATH`. What we really want to do here is use a CentOS8 buildroot, which will automatically enforce this in a better way along with solving other problems. But right now we've broken that because libdnf requires a too-new libmodulemd. So let's just rely on the Fedora rust for now.
8 lines
128 B
Bash
Executable File
8 lines
128 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
ci/installdeps.sh
|
|
ci/install-extra-builddeps.sh
|
|
export PATH="$HOME/.cargo/bin:$PATH"
|
|
ci/build.sh
|