summaryrefslogtreecommitdiff
path: root/_travis/downstream/botocore.sh
blob: 49ec3fe8bae4c83063905f1bf60a2dfb825dac2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash

set -exo pipefail

case "${1}" in
    install)
        git clone --depth 1 https://github.com/boto/botocore
        cd botocore
        git rev-parse HEAD
        python scripts/ci/install
        ;;
    run)
        cd botocore
        python scripts/ci/run-tests
        ;;
    *)
        exit 1
        ;;
esac