cibuild.sh 2.98 KB
Newer Older
1 2
#!/bin/sh

Carlos Martín Nieto committed
3 4
set -x

5
if [ -n "$COVERITY" ];
Ben Straub committed
6 7 8 9 10
then
	./script/coverity.sh;
	exit $?;
fi

11
if [ "$TRAVIS_OS_NAME" = "osx" ]; then
12
	export PKG_CONFIG_PATH=$(ls -d /usr/local/Cellar/{curl,zlib}/*/lib/pkgconfig | paste -s -d':' -)
13 14
fi

15 16 17 18 19
# Should we ask Travis to cache this file?
curl -L https://github.com/ethomson/poxyproxy/releases/download/v0.1.0/poxyproxy-0.1.0.jar >poxyproxy.jar || exit $?
# Run this early so we know it's ready by the time we need it
java -jar poxyproxy.jar -d --port 8080 --credentials foo:bar &

20 21 22
mkdir _build
cd _build
# shellcheck disable=SC2086
23
cmake .. -DBUILD_EXAMPLES=ON -DCMAKE_INSTALL_PREFIX=../_install $OPTIONS || exit $?
24 25 26 27 28 29 30 31
make -j2 install || exit $?

# If this platform doesn't support test execution, bail out now
if [ -n "$SKIP_TESTS" ];
then
	exit $?;
fi

32
# Create a test repo which we can use for the online::push tests
33 34 35
mkdir "$HOME"/_temp
git init --bare "$HOME"/_temp/test.git
git daemon --listen=localhost --export-all --enable=receive-pack --base-path="$HOME"/_temp "$HOME"/_temp 2>/dev/null &
36 37
export GITTEST_REMOTE_URL="git://localhost/test.git"

38
# Run the test suite
39
ctest -V -R libgit2_clar || exit $?
40 41 42 43 44

# Now that we've tested the raw git protocol, let's set up ssh to we
# can do the push tests over it

killall git-daemon
45 46 47 48 49

if [ "$TRAVIS_OS_NAME" = "osx" ]; then
    echo 'PasswordAuthentication yes' | sudo tee -a /etc/sshd_config
fi

50 51 52 53
ssh-keygen -t rsa -f ~/.ssh/id_rsa -N "" -q
cat ~/.ssh/id_rsa.pub >>~/.ssh/authorized_keys
ssh-keyscan -t rsa localhost >>~/.ssh/known_hosts

54 55 56 57 58 59 60
# Get the fingerprint for localhost and remove the colons so we can parse it as
# a hex number. The Mac version is newer so it has a different output format.
if [ "$TRAVIS_OS_NAME" = "osx" ]; then
    export GITTEST_REMOTE_SSH_FINGERPRINT=$(ssh-keygen -E md5 -F localhost -l | tail -n 1 | cut -d ' ' -f 3 | cut -d : -f2- | tr -d :)
else
    export GITTEST_REMOTE_SSH_FINGERPRINT=$(ssh-keygen -F localhost -l | tail -n 1 | cut -d ' ' -f 2 | tr -d ':')
fi
61

62 63 64 65 66 67
export GITTEST_REMOTE_URL="ssh://localhost/$HOME/_temp/test.git"
export GITTEST_REMOTE_USER=$USER
export GITTEST_REMOTE_SSH_KEY="$HOME/.ssh/id_rsa"
export GITTEST_REMOTE_SSH_PUBKEY="$HOME/.ssh/id_rsa.pub"
export GITTEST_REMOTE_SSH_PASSPHRASE=""

68

69
if [ -e ./libgit2_clar ]; then
70
    ./libgit2_clar -sonline::push -sonline::clone::ssh_cert &&
71
    ./libgit2_clar -sonline::clone::ssh_with_paths || exit $?
72
    if [ "$TRAVIS_OS_NAME" = "linux" ]; then
73
        ./libgit2_clar -sonline::clone::cred_callback || exit $?
74
    fi
75

76
    # Use the proxy we started at the beginning
77
    export GITTEST_REMOTE_PROXY_URL="http://foo:bar@localhost:8080/"
78
    ./libgit2_clar -sonline::clone::proxy_credentials_in_url || exit $?
79 80 81
    export GITTEST_REMOTE_PROXY_URL="http://localhost:8080/"
    export GITTEST_REMOTE_PROXY_USER="foo"
    export GITTEST_REMOTE_PROXY_PASS="bar"
82
    ./libgit2_clar -sonline::clone::proxy_credentials_request || exit $?
83

84
fi
85 86 87

export GITTEST_REMOTE_URL="https://github.com/libgit2/non-existent"
export GITTEST_REMOTE_USER="libgit2test"
88
ctest -V -R libgit2_clar-cred_callback