Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions ci/run_conditional_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ fi
test_script="${PROJECT_ROOT}/ci/run_single_test.sh"


if [[ "$(node -v)" == v22* ]]; then
export NODE_OPTIONS="${NODE_OPTIONS} --no-warnings=DEP0040"
export NODE_OPTIONS="${NODE_OPTIONS} --no-experimental-require-module"
fi

if [ ${BUILD_TYPE} == "presubmit" ]; then
# For presubmit build, we want to know the difference from the
# common commit in origin/main.
Expand Down
2 changes: 1 addition & 1 deletion ci/run_single_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ set -e

export REGION_ID='uc'
export PROJECT_ROOT=$(realpath $(dirname "${BASH_SOURCE[0]}")/..)
export NODE_OPTIONS=--max_old_space_size=6144
export NODE_OPTIONS="${NODE_OPTIONS} --max_old_space_size=6144 --no-deprecation"

if [ -z "${BUILD_TYPE}" ]; then
echo "missing BUILD_TYPE env var"
Expand Down
Loading