summaryrefslogtreecommitdiffstats
path: root/third_party/rust/cast/ci/script.sh
blob: 47156383284b40e2d2b0fbd908a2f80f0137c39a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
set -ex

main() {
    cross test --target $TARGET
    cross test --target $TARGET --release

    [ "$TRAVIS_RUST_VERSION" -eq "nightly" ] && cross test --feature x128 --target $TARGET
    [ "$TRAVIS_RUST_VERSION" -eq "nightly" ] && cross test --feature x128 --target $TARGET --release

    cross test --no-default-features --target $TARGET
    cross test --no-default-features --target $TARGET --release
}

main