-
Notifications
You must be signed in to change notification settings - Fork 13
/
test.flakiness.sh
executable file
·54 lines (42 loc) · 2.19 KB
/
test.flakiness.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/bin/bash -x
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
nvm use v10.14.1
npm install junit-xml-stats -g
. ./test.common.sh
LAST_COMMIT_MESSAGE=`git --no-pager log --decorate=short --pretty=oneline -n1 $CIRCLE_SHA1`
FAILFAST="-failfast"
TIMEOUT_ACCEPTANCE="20m"
TIMEOUT_REST="10m"
COUNT_ACCEPTANCE=10
COUNT_REST=20
if [[ "${LAST_COMMIT_MESSAGE}" == *"#extraflaky"* ]]; then
FAILFAST=""
TIMEOUT_ACCEPTANCE="500m"
TIMEOUT_REST="500m"
COUNT_ACCEPTANCE=30
COUNT_REST=30
fi
if [[ $1 == "NIGHTLY" ]]; then
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
export NVM_DIR="/opt/circleci/.nvm" && . $NVM_DIR/nvm.sh && nvm install v11.2 && nvm use v11.2
npm install junit-xml-stats -g
NIGHTLY=1
echo "performing nightly build (count 1000/2000 , no failfast)"
FAILFAST=""
TIMEOUT_ACCEPTANCE="500m"
TIMEOUT_REST="500m"
# The number here have been reduced since we use paralleism 6 to run 500 tests in 6 different processes
COUNT_ACCEPTANCE=30
COUNT_REST=30
fi
if [ "$CIRCLE_NODE_INDEX" == 0 ] || [ "$CIRCLE_NODE_INDEX" == 1 ] || [ "$CIRCLE_NODE_INDEX" == 2 ] || [ "$CIRCLE_NODE_INDEX" == 3 ] || [ -z "$CIRCLE_NODE_INDEX" ]; then
go_test_junit_report acceptance ./test/acceptance -count $COUNT_ACCEPTANCE -timeout $TIMEOUT_ACCEPTANCE $FAILFAST -tags "unsafetests"
fi
if [ "$CIRCLE_NODE_INDEX" == 4 ] || [ "$CIRCLE_NODE_INDEX" == 5 ] || [ -z "$CIRCLE_NODE_INDEX" ]; then
go_test_junit_report blockstorage ./services/blockstorage/test -count $COUNT_ACCEPTANCE -timeout $TIMEOUT_REST $FAILFAST -tags "unsafetests"
go_test_junit_report internodesync ./services/blockstorage/internodesync -count $COUNT_ACCEPTANCE -timeout $TIMEOUT_REST $FAILFAST -tags "unsafetests"
go_test_junit_report servicesync ./services/blockstorage/servicesync -count $COUNT_ACCEPTANCE -timeout $TIMEOUT_REST $FAILFAST -tags -tags "unsafetests"
go_test_junit_report transactionpool ./services/transactionpool/test -count $COUNT_ACCEPTANCE -timeout $TIMEOUT_REST $FAILFAST -tags -tags "unsafetests"
fi