File tree Expand file tree Collapse file tree 4 files changed +8
-6
lines changed Expand file tree Collapse file tree 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 \
4040 PORT_LIBRARY_PATH=/usr/local/lib \
4141 DEBIAN_FRONTEND=noninteractive \
4242 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"
4445
4546# Define working directory
4647WORKDIR $LOADER_SCRIPT_PATH
Original file line number Diff line number Diff line change @@ -40,7 +40,8 @@ ENV LOADER_LIBRARY_PATH=$METACALL_PATH/build \
4040 PORT_LIBRARY_PATH=$METACALL_PATH/build \
4141 DEBIAN_FRONTEND=noninteractive \
4242 NODE_PATH=/usr/lib/node_modules \
43- DOTNET_CLI_TELEMETRY_OPTOUT=true
43+ DOTNET_CLI_TELEMETRY_OPTOUT=true \
44+ PATH="/usr/local/bin:$PATH"
4445
4546# Define working directory
4647WORKDIR $METACALL_PATH
Original file line number Diff line number Diff line change @@ -74,9 +74,9 @@ sub_build() {
7474 make -j$( getconf _NPROCESSORS_ONLN)
7575
7676 # 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
8080
8181 # Coverage
8282 if [ $BUILD_COVERAGE = 1 ]; then
Original file line number Diff line number Diff line change @@ -529,7 +529,7 @@ sub_configure() {
529529 fi
530530
531531 # 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"
533533
534534 # Execute CMake
535535 cmake -Wno-dev -DOPTION_GIT_HOOKS=Off $BUILD_STRING ..
You can’t perform that action at this time.
0 commit comments