HomeSort by relevance Sort by last modified time
    Searched refs:bazel (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /external/googletest/ci/
build-linux-bazel.sh 34 bazel build --curses=no //...:all
35 bazel test --curses=no //...:all
36 bazel test --curses=no //...:all --define absl=1
install-linux.sh 41 echo "deb [arch=amd64] http://storage.googleapis.com/bazel-apt stable jdk1.8" | \
42 sudo tee /etc/apt/sources.list.d/bazel.list
43 curl https://bazel.build/bazel-release.pub.gpg | sudo apt-key add -
44 sudo apt-get update && sudo apt-get install -y bazel gcc-4.9 g++-4.9 clang-3.9
  /external/tensorflow/tensorflow/tools/ci_build/install/
install_bazel.sh 17 # Select bazel version.
21 local_bazel_ver=$(bazel version 2>&1 | grep -i label | awk '{print $3}')
29 # Install bazel.
30 mkdir -p /bazel
31 cd /bazel
32 if [[ ! -f "bazel-$BAZEL_VERSION-installer-linux-x86_64.sh" ]]; then
33 curl -fSsL -O https://github.com/bazelbuild/bazel/releases/download/$BAZEL_VERSION/bazel-$BAZEL_VERSION-installer-linux-x86_64.sh
35 chmod +x /bazel/bazel-*.s
    [all...]
install_bazel_from_source.sh 18 # It will compile bazel from source and install it in /usr/local/bin
20 # Select bazel version.
24 local_bazel_ver=$(bazel version 2>&1 | grep -i label | awk '{print $3}')
32 # Compile bazel from source
33 mkdir -p /bazel
34 cd /bazel
36 curl -fSsL -O https://github.com/bazelbuild/bazel/releases/download/$BAZEL_VERSION/bazel-$BAZEL_VERSION-dist.zip
37 unzip bazel-$BAZEL_VERSION-dist.zip
39 cp output/bazel /usr/local/bin
    [all...]
install_buildifier_from_source.sh 25 bazel build //buildifier
26 sudo mv bazel-bin/buildifier/linux*stripped/buildifier /usr/local/bin
29 bazel build //buildozer
30 sudo mv bazel-bin/buildozer/linux*stripped/buildozer /usr/local/bin
  /external/grpc-grpc-java/buildscripts/kokoro/
bazel.sh 7 bazel build ...
10 bazel build ...
  /external/tensorflow/tensorflow/tools/ci_build/windows/cpu/bazel/
run_cc_test_windows.sh 26 # * Bazel windows executable copied as "bazel.exe" and included in PATH.
32 # This script is under <repo_root>/tensorflow/tools/ci_build/windows/cpu/bazel
35 cd ${script_dir%%tensorflow/tools/ci_build/windows/cpu/bazel}.
37 # Setting up the environment variables Bazel and ./configure needs
38 source "tensorflow/tools/ci_build/windows/bazel/common_env.sh" \
42 source "tensorflow/tools/ci_build/windows/bazel/bazel_test_lib.sh" \
51 passing_tests=$(bazel query "kind(cc_test, //tensorflow/cc/... + //tensorflow/core/...) - (${exclude_cpu_cc_tests}) - ($slow_compiling_test)" |
55 bazel test -k $slow_compiling_test --test_output=errors
56 bazel test -c opt -k $passing_tests --test_output=error
    [all...]
  /external/tensorflow/tensorflow/core/api_def/
update_api_def.sh 25 bazel build //tensorflow/core/api_def:update_api_def
26 bazel-bin/tensorflow/core/api_def/update_api_def \
  /external/tensorflow/tensorflow/tools/ci_build/windows/gpu/bazel/
run_cc_test_windows.sh 26 # * Bazel windows executable copied as "bazel.exe" and included in PATH.
32 # This script is under <repo_root>/tensorflow/tools/ci_build/windows/cpu/bazel
35 cd ${script_dir%%tensorflow/tools/ci_build/windows/gpu/bazel}.
37 # Setting up the environment variables Bazel and ./configure needs
38 source "tensorflow/tools/ci_build/windows/bazel/common_env.sh" \
42 source "tensorflow/tools/ci_build/windows/bazel/bazel_test_lib.sh" \
53 passing_tests=$(bazel query "kind(cc_test, //tensorflow/cc/... + //tensorflow/core/...) - (${exclude_gpu_cc_tests}) - ($slow_compiling_test)" |
57 # TODO(pcloudy): There is a bug in Bazel preventing build with GPU support without -c opt
59 # bazel test --config=win-cuda -k $slow_compiling_test --test_output=error
    [all...]
  /external/grpc-grpc/tools/distrib/python/
bazel_deps.sh 19 # First check if bazel is installed on the machine. If it is, then we don't need
20 # to invoke the docker bazel.
21 if [ -x "$(command -v bazel)" ]
24 bazel query 'deps('$1')'
30 bazel query 'deps('$1')'
  /external/googletest/
Makefile.am 9 BUILD.bazel \
  /external/grpc-grpc/tools/internal_ci/linux/
grpc_build_submodule_at_head.sh 31 # Upgrade bazel.
32 # make_grpcio_tools.py requires bazel >=0.13.1 to run (Kokoro workers only have bazel 0.9)
33 curl -fSsL -O https://github.com/bazelbuild/bazel/releases/download/0.13.1/bazel-0.13.1-installer-linux-x86_64.sh
34 chmod +x ./bazel-0.13.1-installer-linux-x86_64.sh
35 ./bazel-0.13.1-installer-linux-x86_64.sh --user
36 rm -f ./bazel-0.13.1-installer-linux-x86_64.sh
grpc_bazel.sh 23 export DOCKERFILE_DIR=tools/dockerfile/test/bazel
  /external/tensorflow/tensorflow/contrib/makefile/
gen_file_lists.sh 17 # the master Bazel build configuration.
19 bazel query 'kind("source file", deps(//tensorflow/core:android_tensorflow_lib))' | \
25 bazel query 'kind("generated file", deps(//tensorflow/core:proto_text))' | \
31 bazel query 'kind("source file", deps(//tensorflow/tools/proto_text:gen_proto_text_functions))' | \
39 bazel query 'kind("generated file", deps(//tensorflow/tools/proto_text:gen_proto_text_functions))' | \
45 bazel query 'kind("generated file", deps(//tensorflow/tools/proto_text:gen_proto_text_functions))' | \
  /external/brotli/scripts/
.travis.sh 19 "bazel")
20 brew install bazel
60 "bazel")
61 bazel build -c opt ...:all &&
62 cd go && bazel test -c opt ...:all && cd .. &&
63 cd java && bazel test -c opt ...:all && cd .. &&
64 cd js && bazel test -c opt ...:all && cd .. &&
65 cd research && bazel build -c opt ...:all && cd ..
73 "bazel")
76 zip -j9 brotli.zip bazel-bin/libbrotli*.a bazel-bin/libbrotli*.so bazel-bin/brotl
    [all...]
  /external/tensorflow/tensorflow/tools/ci_build/xla/linux/rocm/
run_py3.sh 24 echo "Bazel will use ${N_JOBS} concurrent job(s)."
35 bazel clean
36 # Run bazel test command. Double test timeouts to avoid flakes.
37 bazel test --config=rocm --test_tag_filters=-no_gpu,-benchmark-test,-no_oss -k \
  /external/tensorflow/tensorflow/tools/ci_build/builds/
libtensorflow.sh 46 echo "Must run this from the root of the bazel workspace"
60 bazel clean --expunge
64 # https://github.com/bazelbuild/bazel/issues/2352
65 # and https://github.com/bazelbuild/bazel/issues/1580
70 bazel test ${BAZEL_OPTS} \
74 bazel build ${BAZEL_OPTS} \
83 cp bazel-bin/tensorflow/tools/lib_package/libtensorflow.tar.gz ${DIR}/libtensorflow${TARBALL_SUFFIX}.tar.gz
84 cp bazel-bin/tensorflow/tools/lib_package/libtensorflow_jni.tar.gz ${DIR}/libtensorflow_jni${TARBALL_SUFFIX}.tar.gz
85 cp bazel-bin/tensorflow/java/libtensorflow.jar ${DIR}
86 cp_normalized_srcjar bazel-bin/tensorflow/java/libtensorflow-src.jar ${DIR}/libtensorflow-src.ja
    [all...]
android_full.sh 43 bazel build --config=monolithic --cpu=${CPU} \
52 copy_lib bazel-bin/tensorflow/core/libandroid_tensorflow_lib.lo
53 copy_lib bazel-bin/tensorflow/contrib/android/libtensorflow_inference.so
54 copy_lib bazel-bin/tensorflow/examples/android/libtensorflow_demo.so
55 copy_lib bazel-bin/tensorflow/tools/benchmark/benchmark_model
58 cp bazel-bin/tensorflow/contrib/android/libtensorflow_inference.so ${AAR_LIB_TMP}/jni/${CPU}
63 # in assets/ dir (see https://github.com/bazelbuild/bazel/issues/2334)
66 bazel --bazelrc=/dev/null build --config=monolithic --fat_apk_cpu=${CPUS} \
74 cp bazel-bin/tensorflow/examples/android/tensorflow_demo.apk \
75 bazel-bin/tensorflow/contrib/android/libandroid_tensorflow_inference_java.jar ${OUT_DIR
    [all...]
  /external/google-fruit/extras/dockerfiles/
ubuntu-16.04_install.sh 8 # For the Bazel repository
9 curl https://bazel.build/bazel-release.pub.gpg | apt-key add -
19 bazel \
  /external/grpc-grpc/include/grpcpp/
opencensus.h 23 #error OpenCensus for gRPC is only supported when building with bazel.
31 // it is only setup to be built with Bazel.
  /external/tensorflow/tensorflow/tools/ci_build/osx/cpu/
run_contrib.sh 25 echo "Bazel will use ${N_JOBS} concurrent job(s)."
33 which bazel
35 bazel test --test_tag_filters=-no_oss,-gpu,-benchmark-test,-nomac,-no_mac \
run_py2_cc_core.sh 25 echo "Bazel will use ${N_JOBS} concurrent job(s)."
34 which bazel
36 bazel test --test_tag_filters=-no_oss,-gpu,-benchmark-test,-nomac,-no_mac \
run_py3_cc_core.sh 25 echo "Bazel will use ${N_JOBS} concurrent job(s)."
32 which bazel
33 bazel test --test_tag_filters=-no_oss,-gpu,-benchmark-test,-nomac,-no_mac \
  /external/tensorflow/tensorflow/tools/ci_build/xla/linux/gpu/
run_py3.sh 24 echo "Bazel will use ${N_JOBS} concurrent job(s)."
36 bazel clean
37 # Run bazel test command. Double test timeouts to avoid flakes.
38 bazel test --config=cuda --test_tag_filters=-no_gpu,-benchmark-test,-no_oss -k \
  /external/tensorflow/tensorflow/tools/pip_package/
build_pip_package.sh 65 if [ ! -d bazel-bin/tensorflow ]; then
66 echo "Could not find bazel-bin. Did you run from the root of the build tree?"
71 rm -rf ./bazel-bin/tensorflow/tools/pip_package/simple_console_for_window_unzip
72 mkdir -p ./bazel-bin/tensorflow/tools/pip_package/simple_console_for_window_unzip
74 unzip -o -q ./bazel-bin/tensorflow/tools/pip_package/simple_console_for_windows.zip -d ./bazel-bin/tensorflow/tools/pip_package/simple_console_for_window_unzip
78 bazel-bin/tensorflow/tools/pip_package/simple_console_for_window_unzip/runfiles/org_tensorflow/tensorflow \
81 bazel-bin/tensorflow/tools/pip_package/simple_console_for_window_unzip/runfiles \
83 RUNFILES=bazel-bin/tensorflow/tools/pip_package/simple_console_for_window_unzip/runfiles/org_tensorflow
85 RUNFILES=bazel-bin/tensorflow/tools/pip_package/build_pip_package.runfiles/org_tensorflo
    [all...]

Completed in 969 milliseconds

1 2 3 4