xref: /netbsd-src/external/bsd/jemalloc/dist/scripts/windows/script.sh (revision 7bdf38e5b7a28439665f2fdeff81e36913eef7dd)
1#!/bin/bash
2
3set -e
4
5if [[ "$TRAVIS_OS_NAME" != "windows" ]]; then
6    echo "Incorrect \$TRAVIS_OS_NAME: expected windows, got $TRAVIS_OS_NAME"
7    exit 1
8fi
9
10$build_env mingw32-make -k check
11