From 05f9f001c1e7d41678c43b8e1ba5a532c215845a Mon Sep 17 00:00:00 2001 From: Misha Chornyi <99709299+mc-nv@users.noreply.github.com> Date: Tue, 14 Jan 2025 13:55:20 -0800 Subject: [PATCH 1/2] Install python build package inside Winbase build container (#7934) --- build.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.py b/build.py index 1cd03f5e99..15bff402a4 100755 --- a/build.py +++ b/build.py @@ -1048,6 +1048,8 @@ def create_dockerfile_buildbase(ddir, dockerfile_name, argmap): # Install the windows- or linux-specific buildbase dependencies if target_platform() == "windows": df += """ +RUN python3 -m pip install build + SHELL ["cmd", "/S", "/C"] """ else: From 71ee05c3a94e2d68838d5ff1aa0ebc5956a2eb10 Mon Sep 17 00:00:00 2001 From: Jacky <18255193+kthui@users.noreply.github.com> Date: Tue, 14 Jan 2025 14:15:37 -0800 Subject: [PATCH 2/2] ci: Fix L0_lifecycle server shutdown (#7933) --- qa/L0_lifecycle/test.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/qa/L0_lifecycle/test.sh b/qa/L0_lifecycle/test.sh index 4efd244c76..f1a33886ac 100755 --- a/qa/L0_lifecycle/test.sh +++ b/qa/L0_lifecycle/test.sh @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright 2018-2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved. +# Copyright 2018-2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions @@ -1576,7 +1576,7 @@ if [ `grep -c "Model 'custom_zero_1_float32' (version 1) has 1 in-flight inferen RET=1 fi -kill $SERVER_PID +kill $SERVER_PID || true wait $SERVER_PID rm -f $CLIENT_LOG @@ -1614,7 +1614,7 @@ if [ `grep -c "Model 'custom_sequence_int32' (version 1) has 1 in-flight inferen RET=1 fi -kill $SERVER_PID +kill $SERVER_PID || true wait $SERVER_PID rm -f $CLIENT_LOG @@ -1655,7 +1655,7 @@ if [ `grep -c "Model 'ensemble_zero_1_float32' (version 1) has 1 in-flight infer RET=1 fi -kill $SERVER_PID +kill $SERVER_PID || true wait $SERVER_PID LOG_IDX=$((LOG_IDX+1)) @@ -2128,7 +2128,7 @@ if [ $? -ne 0 ]; then fi set -e -kill $SERVER_PID +kill $SERVER_PID || true wait $SERVER_PID LOG_IDX=$((LOG_IDX+1))