2017-09-19 18:14:41 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# Entrypoint for jenkins janky CI build
|
|
|
|
set -eu -o pipefail
|
|
|
|
|
|
|
|
hack/validate/default
|
|
|
|
hack/test/unit
|
2017-09-20 18:54:53 -04:00
|
|
|
bash <(curl -s https://codecov.io/bash) \
|
|
|
|
-f coverage.txt \
|
2018-03-28 20:06:36 -04:00
|
|
|
-C "$GIT_SHA1" || \
|
2017-09-19 18:00:54 -04:00
|
|
|
echo 'Codecov failed to upload'
|
2017-09-19 18:14:41 -04:00
|
|
|
|
|
|
|
hack/make.sh \
|
|
|
|
binary-daemon \
|
|
|
|
dynbinary \
|
2019-01-07 12:05:54 -05:00
|
|
|
test-integration-flaky \
|
2017-11-02 18:05:38 -04:00
|
|
|
test-integration \
|
2019-04-05 10:14:57 -04:00
|
|
|
cross \
|
|
|
|
test-docker-py
|