-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sh
executable file
·227 lines (198 loc) · 7.35 KB
/
build.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
#!/usr/bin/env bash
set -e
if [ "${BASH_VERSION:0:1}" -lt 4 ]; then
echo "EPROGMISMATCH: bash version must be at least 4" >&2
exit 75
fi
if [ $# -gt 0 ]; then
echo "E2BIG: too many arguments" >&2
exit 7
fi
[[ -n "$TRAVIS_BUILD_ID" ]] && IS_TRAVIS="TRUE" || IS_TRAVIS="FALSE"
msgPrefix="⬤ BUILD.SH : "
function run_tests {
local rest_args=
local ws_args=
if [ $# -eq 2 ]; then
rest_args="$1"
ws_args="$2"
if [ -z "$rest_args" ]; then
: &
local rest_pid=$!
fi
if [ -z "$ws_args" ]; then
: &
local ws_pid=$!
fi
fi
if [ -z "$rest_pid" ]; then
if [ -z "$rest_args" ] || { [ -n "$rest_args" ] && [ "$rest_args" != "skip" ]; }; then
# shellcheck disable=SC2086
npm run live-tests -- --js --python-async --php-async --csharp $rest_args &
local rest_pid=$!
fi
fi
if [ -z "$ws_pid" ]; then
if [ -z "$ws_args" ] || { [ -n "$ws_args" ] && [ "$ws_args" != "skip" ]; }; then
# shellcheck disable=SC2086
npm run live-tests -- --js --python-async --php-async --csharp --ws $ws_args &
local ws_pid=$!
fi
fi
if [ -n "$rest_pid" ] && [ -n "$ws_pid" ]; then
wait $rest_pid && wait $ws_pid
elif [ -n "$rest_pid" ]; then
wait $rest_pid
else
wait $ws_pid
fi
}
build_and_test_all () {
npm run force-build
if [ "$IS_TRAVIS" = "TRUE" ]; then
merged_pull_request="$(git show --format="%s" -s HEAD | sed -nE 's/Merge pull request #([0-9]{5}).+$/\1/p')"
echo "DEBUG: $merged_pull_request" # for debugging
if [ -n "$merged_pull_request" ]; then
echo "Travis is building merge commit #$merged_pull_request"
# run every 3 merged pull requests
# if [ $(("${merged_pull_request:0-1}" % 3)) -eq 0 ]; then
# # update pyenv
# (cd "$(pyenv root)" && git pull -q origin master)
# # install python interpreters
# pyenv install -s 3.7.17
# pyenv install -s 3.8.18
# pyenv install -s 3.9.18
# pyenv install -s 3.10.13
# pyenv install -s 3.11.6
# pyenv global 3.7 3.8 3.9 3.10 3.11
# cd python
# if ! tox run-parallel; then
# exit 1
# fi
# cd ..
# fi
fi
npm run test-base-rest
npm run test-base-ws
npm run id-tests
npm run request-tests
npm run response-tests
npm run commonjs-test
npm run package-test
npm run test-freshness
if [ "$IS_TRAVIS" = "TRUE" ] && [ "$TRAVIS_PULL_REQUEST" = "false" ]; then
echo "Travis built all files and static/base tests passed, will push to master before running live tests"
env COMMIT_MESSAGE="${TRAVIS_COMMIT_MESSAGE}" GITHUB_TOKEN=${GITHUB_TOKEN} SHOULD_TAG=false ./build/push.sh;
fi
last_commit_message=$(git log -1 --pretty=%B)
echo "Last commit: $last_commit_message" # for debugging
if [[ "$last_commit_message" == *"skip-tests"* ]]; then
echo "[SKIP-TESTS] Will skip tests!"
exit
fi
run_tests
fi
exit
}
### CHECK IF THIS IS A PR ###
# for appveyor, when PR is from fork, APPVEYOR_REPO_BRANCH is "master" and "APPVEYOR_PULL_REQUEST_HEAD_REPO_BRANCH" is branch name. if PR is from same repo, only APPVEYOR_REPO_BRANCH is set (and it is branch name)
if { [ "$IS_TRAVIS" = "TRUE" ] && [ "$TRAVIS_PULL_REQUEST" = "false" ]; } || { [ "$IS_TRAVIS" != "TRUE" ] && [ -z "$APPVEYOR_PULL_REQUEST_HEAD_REPO_BRANCH" ]; }; then
echo "$msgPrefix This is a master commit (not a PR), will build everything"
build_and_test_all
fi
##### DETECT CHANGES #####
# in appveyor, there is no origin/master locally, so we need to fetch it.
if [[ "$IS_TRAVIS" != "TRUE" ]]; then
git remote set-branches origin 'master'
git fetch --depth=1 --no-tags
fi
diff=$(git diff origin/master --name-only)
# temporarily remove the below scripts from diff
diff=$(echo "$diff" | sed -e "s/^build\.sh//")
diff=$(echo "$diff" | sed -e "s/^skip\-tests\.json//")
diff=$(echo "$diff" | sed -e "s/^ts\/src\/test\/static.*json//") #remove static tests and markets
# diff=$(echo "$diff" | sed -e "s/^\.travis\.yml//")
# diff=$(echo "$diff" | sed -e "s/^package\-lock\.json//")
# diff=$(echo "$diff" | sed -e "s/python\/qa\.py//")
#echo $diff
critical_pattern='Client(Trait)?\.php|Exchange\.php|\/base|^build|static_dependencies|^run-tests|package(-lock)?\.json|composer\.json|ccxt\.ts|__init__.py|test' # add \/test|
if [[ "$diff" =~ $critical_pattern ]]; then
echo "$msgPrefix Important changes detected - doing full build & test"
echo "$diff"
build_and_test_all
fi
echo "$msgPrefix Unimportant changes detected - build & test only specific exchange(s)"
readarray -t y <<<"$diff"
rest_pattern='ts\/src\/([A-Za-z0-9_-]+).ts' # \w not working for some reason
ws_pattern='ts\/src\/pro\/([A-Za-z0-9_-]+)\.ts'
REST_EXCHANGES=()
WS_EXCHANGES=()
for file in "${y[@]}"; do
if [[ "$file" =~ $rest_pattern ]]; then
modified_exchange="${BASH_REMATCH[1]}"
REST_EXCHANGES+=($modified_exchange)
elif [[ "$file" =~ $ws_pattern ]]; then
modified_exchange="${BASH_REMATCH[1]}"
WS_EXCHANGES+=($modified_exchange)
fi
done
### BUILD SPECIFIC EXCHANGES ###
# faster version of pre-transpile (without bundle and atomic linting)
npm run export-exchanges && npm run tsBuild && npm run emitAPI
# check return types
npm run validate-types ${REST_EXCHANGES[*]}
echo "$msgPrefix REST_EXCHANGES TO BE TRANSPILED: ${REST_EXCHANGES[*]}"
PYTHON_FILES=()
for exchange in "${REST_EXCHANGES[@]}"; do
npm run eslint "ts/src/$exchange.ts"
node build/transpile.js $exchange --force --child
npm run transpileCsSingle -- $exchange
PYTHON_FILES+=("python/ccxt/$exchange.py")
PYTHON_FILES+=("python/ccxt/async_support/$exchange.py")
done
echo "$msgPrefix WS_EXCHANGES TO BE TRANSPILED: ${WS_EXCHANGES[*]}"
for exchange in "${WS_EXCHANGES[@]}"; do
npm run eslint "ts/src/pro/$exchange.ts"
node build/transpileWS.js $exchange --force --child
npm run transpileCsSingle -- $exchange --ws
PYTHON_FILES+=("python/ccxt/pro/$exchange.py")
done
# faster version of post-transpile
npm run check-php-syntax
# only run the python linter if exchange related files are changed
if [ ${#PYTHON_FILES[@]} -gt 0 ]; then
echo "$msgPrefix Linting python files: ${PYTHON_FILES[*]}"
ruff check "${PYTHON_FILES[@]}"
fi
### RUN SPECIFIC TESTS (ONLY IN TRAVIS) ###
if [[ "$IS_TRAVIS" != "TRUE" ]]; then
exit
fi
if [ ${#REST_EXCHANGES[@]} -eq 0 ] && [ ${#WS_EXCHANGES[@]} -eq 0 ]; then
echo "$msgPrefix no exchanges to test, exiting"
exit
fi
# build dotnet project
npm run buildCS
# run base tests (base js,py,php, brokerId )
# npm run test-base
npm run test-base-rest && npm run test-base-ws && npm run id-tests
# rest_args=${REST_EXCHANGES[*]} || "skip"
rest_args=$(IFS=" " ; echo "${REST_EXCHANGES[*]}") || "skip"
# ws_args=${WS_EXCHANGES[*]} || "skip"
ws_args=$(IFS=" " ; echo "${WS_EXCHANGES[*]}") || "skip"
#request static tests
for exchange in "${REST_EXCHANGES[@]}"; do
npm run request-js -- $exchange
npm run request-py-sync -- $exchange && npm run request-py-async -- $exchange
npm run request-php-sync -- $exchange && npm run request-php-async -- $exchange
npm run request-cs -- $exchange
done
#response static tests
for exchange in "${REST_EXCHANGES[@]}"; do
npm run response-js -- $exchange
npm run response-py-sync -- $exchange && npm run response-py-async -- $exchange
npm run response-php-sync -- $exchange && npm run response-php-async -- $exchange
npm run response-cs -- $exchange
done
run_tests "$rest_args" "$ws_args"