b91e6bc9a3
We lost this during the transition from PAPR to CoreOS CI. We don't have a lot of new tests there since new unit tests tend to be in Rust, though we should still run what we do have. Repurpose the `rust` branch to more generically run all unit tests and not just the Rust ones. It still also checks that compilation against the MSRV works fine.
15 lines
519 B
Bash
Executable File
15 lines
519 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
# this corresponds to the latest Rust module available in el8
|
|
MINIMUM_SUPPORTED_RUST_VERSION=1.45.2
|
|
|
|
ci/installdeps.sh
|
|
dnf remove -y cargo
|
|
curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain ${MINIMUM_SUPPORTED_RUST_VERSION} -y
|
|
export PATH="$HOME/.cargo/bin:$PATH"
|
|
SKIP_INSTALLDEPS=1 ci/build.sh |& tee out.txt
|
|
grep ${MINIMUM_SUPPORTED_RUST_VERSION} out.txt
|
|
grep "checking for cargo... $HOME/.cargo/bin/cargo" out.txt
|
|
grep "checking for rustc... $HOME/.cargo/bin/rustc" out.txt
|