Skip to content

Commit 25caa34

Browse files
committed
Trying path in docker.
1 parent 97cfe6f commit 25caa34

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

tools/cli/Dockerfile

+2-1
Original file line numberDiff line numberDiff 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
4647
WORKDIR $LOADER_SCRIPT_PATH

tools/dev/Dockerfile

+2-1
Original file line numberDiff line numberDiff 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
4647
WORKDIR $METACALL_PATH

tools/metacall-build.sh

+3-3
Original file line numberDiff line numberDiff 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

tools/metacall-configure.sh

+1-1
Original file line numberDiff line numberDiff 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 ..

0 commit comments

Comments
 (0)