Skip to content

Commit 79fc0b3

Browse files
authored
CI: on host: force 64 bit mode like make -j2 CI implicitly does (#7513)
It allows to run CI tests on computers having gcc-multilib installed
1 parent 3e567e9 commit 79fc0b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/ci/host_test.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ set -ev
77
cd $TRAVIS_BUILD_DIR/tests/host
88

99

10-
make -j2 ssl
10+
make -j2 FORCE32=0 ssl
1111
for i in ../../libraries/ESP8266WiFi/examples/WiFiClient/WiFiClient \
1212
../../libraries/ESP8266WiFi/examples/BearSSL_Validation/BearSSL_Validation \
1313
../../libraries/ESP8266WebServer/examples/HelloServer/HelloServer \
1414
../../libraries/SD/examples/Files/Files \
1515
../../libraries/LittleFS/examples/LittleFS_Timestamp/LittleFS_Timestamp \
1616
../../libraries/LittleFS/examples/SpeedTest/SpeedTest ; do
17-
make -j2 D=1 $i
17+
make -j2 D=1 FORCE32=0 $i
1818
valgrind --leak-check=full --track-origins=yes --error-limit=no --show-leak-kinds=all --error-exitcode=999 bin/$(basename $i)/$(basename $i) -1
1919
done
2020

0 commit comments

Comments
 (0)