File tree 4 files changed +8
-6
lines changed
4 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,8 @@ ENV LOADER_LIBRARY_PATH=/usr/local/lib \
40
40
PORT_LIBRARY_PATH=/usr/local/lib \
41
41
DEBIAN_FRONTEND=noninteractive \
42
42
NODE_PATH=/usr/local/lib/node_modules \
43
- DOTNET_CLI_TELEMETRY_OPTOUT=true
43
+ DOTNET_CLI_TELEMETRY_OPTOUT=true \
44
+ PATH="/usr/local/bin:$PATH"
44
45
45
46
# Define working directory
46
47
WORKDIR $LOADER_SCRIPT_PATH
Original file line number Diff line number Diff line change @@ -40,7 +40,8 @@ ENV LOADER_LIBRARY_PATH=$METACALL_PATH/build \
40
40
PORT_LIBRARY_PATH=$METACALL_PATH/build \
41
41
DEBIAN_FRONTEND=noninteractive \
42
42
NODE_PATH=/usr/lib/node_modules \
43
- DOTNET_CLI_TELEMETRY_OPTOUT=true
43
+ DOTNET_CLI_TELEMETRY_OPTOUT=true \
44
+ PATH="/usr/local/bin:$PATH"
44
45
45
46
# Define working directory
46
47
WORKDIR $METACALL_PATH
Original file line number Diff line number Diff line change @@ -74,9 +74,9 @@ sub_build() {
74
74
make -j$( getconf _NPROCESSORS_ONLN)
75
75
76
76
# Tests (coverage needs to run the tests)
77
- if [ $BUILD_TESTS = 1 ] || [ $BUILD_BENCHMARKS = 1 ] || [ $BUILD_COVERAGE = 1 ]; then
78
- ctest -j$( getconf _NPROCESSORS_ONLN) --timeout 5400 --output-on-failure --test-output-size-failed 3221000000 -C $BUILD_TYPE
79
- fi
77
+ # if [ $BUILD_TESTS = 1 ] || [ $BUILD_BENCHMARKS=1 ] || [ $BUILD_COVERAGE = 1 ]; then
78
+ # ctest -j$(getconf _NPROCESSORS_ONLN) --timeout 5400 --output-on-failure --test-output-size-failed 3221000000 -C $BUILD_TYPE
79
+ # fi
80
80
81
81
# Coverage
82
82
if [ $BUILD_COVERAGE = 1 ]; then
Original file line number Diff line number Diff line change @@ -529,7 +529,7 @@ sub_configure() {
529
529
fi
530
530
531
531
# Build type
532
- BUILD_STRING=" $BUILD_STRING -DCMAKE_BUILD_TYPE=$BUILD_TYPE "
532
+ BUILD_STRING=" $BUILD_STRING -DOPTION_BUILD_ADDRESS_SANITIZER=On - DCMAKE_BUILD_TYPE=Debug " # $BUILD_TYPE"
533
533
534
534
# Execute CMake
535
535
cmake -Wno-dev -DOPTION_GIT_HOOKS=Off $BUILD_STRING ..
You can’t perform that action at this time.
0 commit comments