summaryrefslogtreecommitdiffstats
path: root/third_party/rust/cty/ci/script.sh
blob: 46ac0c26bc10d5c3d80020ea035c6a058dcbec3e (plain)
1
2
3
4
5
6
7
8
9
10
set -ex

main() {
    for target in $(rustup target list | grep linux-gnu | cut -d' ' -f1); do
        rustup target add $target || continue
        cargo check --target $target
    done
}

main