aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tools/ci_build/windows/cpu/bazel/common_env.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/tools/ci_build/windows/cpu/bazel/common_env.sh')
-rw-r--r--tensorflow/tools/ci_build/windows/cpu/bazel/common_env.sh50
1 files changed, 0 insertions, 50 deletions
diff --git a/tensorflow/tools/ci_build/windows/cpu/bazel/common_env.sh b/tensorflow/tools/ci_build/windows/cpu/bazel/common_env.sh
deleted file mode 100644
index 6e7e555065..0000000000
--- a/tensorflow/tools/ci_build/windows/cpu/bazel/common_env.sh
+++ /dev/null
@@ -1,50 +0,0 @@
-#!/bin/bash
-# Copyright 2016 The TensorFlow Authors. All Rights Reserved.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-# ==============================================================================
-#
-# This script assumes the standard setup on tensorflow Jenkins windows machines.
-# It is NOT guaranteed to work on any other machine. Use at your own risk!
-#
-# REQUIREMENTS:
-# * All installed in standard locations:
-# - JDK8, and JAVA_HOME set.
-# - Microsoft Visual Studio 2015 Community Edition
-# - Msys2
-# - Anaconda3
-# * Bazel windows executable copied as "bazel.exe" and included in PATH.
-
-# All commands shall pass, and all should be visible.
-set -x
-set -e
-
-# Use a temporary directory with a short name.
-export TMPDIR="C:/tmp"
-mkdir -p "$TMPDIR"
-
-# Set bash path
-export BAZEL_SH="C:/tools/msys64/usr/bin/bash"
-
-# Set Python path for ./configure
-export PYTHON_BIN_PATH="C:/Program Files/Anaconda3/python"
-
-# Set Python path for cc_configure.bzl
-export BAZEL_PYTHON="C:/Program Files/Anaconda3/python"
-
-# Set Visual Studio path
-export BAZEL_VS="C:/Program Files (x86)/Microsoft Visual Studio 14.0"
-
-# Add python into PATH, it's needed because gen_git_source.py uses
-# '/usr/bin/env python' as a shebang
-export PATH="/c/Program Files/Anaconda3:$PATH"