mirror of
https://github.com/kdave/btrfs-progs
synced 2024-12-12 01:16:13 +00:00
4ef5a112c9
The functionality needed to support reiserfs in convert has been added recently and is not yet available in the CI images, so we'll download and build it there. Signed-off-by: David Sterba <dsterba@suse.com>
25 lines
352 B
Bash
Executable File
25 lines
352 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -z "$TRAVIS_BRANCH" ] ; then
|
|
# no branch? run anyway
|
|
exit 0
|
|
fi
|
|
|
|
# no tests
|
|
if [ "$TRAVIS_BRANCH" = 'coverity_scan' ]; then
|
|
exit 1
|
|
fi
|
|
|
|
# quick tests
|
|
if [ "$TRAVIS_BRANCH" = 'devel' -o "$TRAVIS_BRANCH" = 'master' ]; then
|
|
exit 0
|
|
fi
|
|
|
|
# all tests
|
|
if [ "$TRAVIS_BRANCH" = 'release-test' ]; then
|
|
exit 0
|
|
fi
|
|
|
|
# branch not recognized
|
|
exit 1
|