From 1fcd3eb376e68db16a9236afa9df9336f1e1edd0 Mon Sep 17 00:00:00 2001 From: RandySheriffH <48490400+RandySheriffH@users.noreply.github.com> Date: Thu, 30 Jul 2020 19:51:52 -0700 Subject: [PATCH] cancel night build on pyop (#4673) --- tools/ci_build/build.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tools/ci_build/build.py b/tools/ci_build/build.py index f5ab736535..28aa53813f 100755 --- a/tools/ci_build/build.py +++ b/tools/ci_build/build.py @@ -634,9 +634,7 @@ def generate_build_tree(cmake_path, source_dir, build_dir, cuda_home, cudnn_home "ON" if args.enable_msvc_static_runtime else "OFF"), # enable pyop if it is nightly build "-Donnxruntime_ENABLE_LANGUAGE_INTEROP_OPS=" + ( - "ON" if args.enable_language_interop_ops or - (args.config != 'Debug' and - bool(os.getenv('NIGHTLY_BUILD') == '1')) else "OFF"), + "ON" if args.enable_language_interop_ops else "OFF"), "-Donnxruntime_USE_DML=" + ("ON" if args.use_dml else "OFF"), "-Donnxruntime_USE_WINML=" + ("ON" if args.use_winml else "OFF"), "-Donnxruntime_BUILD_FOR_WINDOWS_STORE=" + ("ON" if args.enable_windows_store else "OFF"),