Commit cd20455 1 parent 7c365fe commit cd20455 Copy full SHA for cd20455
File tree 2 files changed +7
-3
lines changed
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 57
57
resource_class : xlarge
58
58
steps :
59
59
- checkout
60
- - run : ci/do_ci.sh asan
60
+ - run :
61
+ command : ci/do_ci.sh asan
62
+ no_output_timeout : 30m
61
63
tsan :
62
64
docker :
63
65
- image : *envoy-build-image
Original file line number Diff line number Diff line change @@ -186,9 +186,11 @@ if [ -n "$CIRCLECI" ]; then
186
186
# Asan has huge memory requirements in its link steps.
187
187
# As of the new coverage methodology introduced in Envoy, that has grown memory requirements too.
188
188
# Hence we heavily reduce parallellism, to avoid being OOM killed.
189
- if [[ " $1 " == " asan" ]] || [[ " $1 " == " coverage" ]]; then
189
+ if [[ " $1 " == " coverage" ]]; then
190
+ NUM_CPUS=4
191
+ elif [[ " $1 " == " asan" ]]; then
190
192
NUM_CPUS=3
191
- else
193
+ else
192
194
NUM_CPUS=8
193
195
fi
194
196
fi
You can’t perform that action at this time.
0 commit comments