Skip to content

Instantly share code, notes, and snippets.

@AdityaKane2001
Created September 15, 2021 08:52
Show Gist options
  • Save AdityaKane2001/df4086c7265a1b3519ffe65ea61d5ec1 to your computer and use it in GitHub Desktop.
Save AdityaKane2001/df4086c7265a1b3519ffe65ea61d5ec1 to your computer and use it in GitHub Desktop.
Keras build test notebook.ipynb
Display the source blob
Display the rendered blob
Raw
{
"nbformat": 4,
"nbformat_minor": 0,
"metadata": {
"colab": {
"name": "Keras build test notebook.ipynb",
"provenance": [],
"authorship_tag": "ABX9TyPNxmJOBRAeYQDmjFH4SDvG",
"include_colab_link": true
},
"kernelspec": {
"name": "python3",
"display_name": "Python 3"
},
"language_info": {
"name": "python"
}
},
"cells": [
{
"cell_type": "markdown",
"metadata": {
"id": "view-in-github",
"colab_type": "text"
},
"source": [
"<a href=\"https://colab.research.google.com/gist/AdityaKane2001/df4086c7265a1b3519ffe65ea61d5ec1/keras-build-test-notebook.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "X8Hsz4fIeWu8"
},
"source": [
"# Keras build test notebook\n",
"\n",
"Keras has taken a step towards improving developer experience by hosting the codebase in a separate repository. This drastically improves testing times and is a catalyst for rapid open source development. \n",
"\n",
"This notebook is a ready-to-use notebook for testing of Keras modules. This notebook does the following things:\n",
"1. Sets up the environment (venv, bazel, etc.)\n",
"2. Clones your fork.\n",
"3. Runs tests.\n",
"\n",
"You can specify which tests to run. A sample test is shown here. It is not recommended to run all tests in Colab, since it takes a lot of time. \n",
"\n",
"For more information, see [CONTRIBUTING.md](https://github.com/keras-team/keras/blob/master/CONTRIBUTING.md) and [bazel test docs](https://docs.bazel.build/versions/main/skylark/testing.html)."
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "UDPd6H8UhDZ9"
},
"source": [
"Enter your GitHub username and name of the branch to be cloned here. "
]
},
{
"cell_type": "code",
"metadata": {
"cellView": "form",
"id": "d22DfwQAeG-0"
},
"source": [
"USERNAME = 'keras-team' #@param {type:\"string\"}\n",
"BRANCH = 'master' #@param {type:\"string\"}"
],
"execution_count": 1,
"outputs": []
},
{
"cell_type": "markdown",
"metadata": {
"id": "paUZ0KxPkI0u"
},
"source": [
"## Setup"
]
},
{
"cell_type": "code",
"metadata": {
"id": "57JI0dWxd357"
},
"source": [
"%%capture\n",
"\n",
"#Install bazel\n",
"BAZEL_VERSION = '4.2.1'\n",
"!wget https://github.com/bazelbuild/bazel/releases/download/{BAZEL_VERSION}/bazel-{BAZEL_VERSION}-installer-linux-x86_64.sh\n",
"!chmod +x bazel-{BAZEL_VERSION}-installer-linux-x86_64.sh\n",
"!./bazel-{BAZEL_VERSION}-installer-linux-x86_64.sh\n",
"!bazel\n",
"\n",
"# Reinstall venv\n",
"!apt-get update\n",
"!apt-get install python3.7-dev python3.7-venv\n",
"\n",
"# activate virtual env\n",
"!mkdir keras_env\n",
"!python3 -m venv keras_env\n",
"!source keras_env/bin/activate\n",
"\n",
"# Clone repo and install requirements\n",
"!git clone -b $BRANCH https://github.com/$USERNAME/keras.git\n",
"%cd keras\n",
"!pip install -r requirements.txt\n",
"!pip uninstall -y keras-nightly\n",
"!pip install --upgrade tf-nightly"
],
"execution_count": 2,
"outputs": []
},
{
"cell_type": "markdown",
"metadata": {
"id": "I_CYJgFVkKOw"
},
"source": [
"## Tests\n",
"\n",
"Exclude the `.py` while metioning the file path.\n",
"\n",
"Syntax: `!bazel test [module path 1] [module path 2] [...]`"
]
},
{
"cell_type": "code",
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "AngQoIlueVnc",
"outputId": "5e7b5d35-4516-4a60-9341-2486007c916e"
},
"source": [
"!bazel test keras/layers/convolutional_test"
],
"execution_count": 3,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Starting local Bazel server and connecting to it...\n",
"WARNING: ignoring LD_PRELOAD in environment.\n",
"\u001b[35mWARNING: \u001b[0mThe following configs were expanded more than once: [v2]. For repeatable flags, repeats are counted twice and may lead to unexpected behavior.\n",
"\u001b[32mINFO: \u001b[0mOptions provided by the client:\n",
" Inherited 'common' options: --isatty=1 --terminal_columns=0\n",
"\u001b[32mINFO: \u001b[0mReading rc options for 'test' from /content/keras/.bazelrc:\n",
" Inherited 'build' options: --apple_platform_type=macos --define open_source_build=true --define=use_fast_cpp_protos=false --define=tensorflow_enable_mlir_generated_gpu_kernels=0 --define=allow_oversize_protos=true --spawn_strategy=standalone -c opt --announce_rc --define=grpc_no_ares=true --config=short_logs --config=v2\n",
"\u001b[32mINFO: \u001b[0mReading rc options for 'test' from /content/keras/.bazelrc:\n",
" 'test' options: --define open_source_build=true --define=use_fast_cpp_protos=false --config=v2\n",
"\u001b[32mINFO: \u001b[0mFound applicable config definition build:short_logs in file /content/keras/.bazelrc: --output_filter=DONT_MATCH_ANYTHING\n",
"\u001b[32mINFO: \u001b[0mFound applicable config definition build:v2 in file /content/keras/.bazelrc: --define=tf_api_version=2 --action_env=TF2_BEHAVIOR=1\n",
"\u001b[32mINFO: \u001b[0mFound applicable config definition build:v2 in file /content/keras/.bazelrc: --define=tf_api_version=2 --action_env=TF2_BEHAVIOR=1\n",
"\u001b[32mLoading:\u001b[0m 0 packages loaded\n",
"\u001b[32mLoading:\u001b[0m 0 packages loaded\n",
"\u001b[32mLoading:\u001b[0m 0 packages loaded\n",
"\u001b[32mLoading:\u001b[0m 0 packages loaded\n",
" Fetching @com_google_protobuf; fetching\n",
"\u001b[32mLoading:\u001b[0m 0 packages loaded\n",
" Fetching @com_google_protobuf; fetching\n",
"\u001b[32mLoading:\u001b[0m 0 packages loaded\n",
" Fetching @com_google_protobuf; fetching\n",
"\u001b[32mLoading:\u001b[0m 0 packages loaded\n",
" Fetching @com_google_protobuf; fetching\n",
"\u001b[32mLoading:\u001b[0m 0 packages loaded\n",
" Fetching @com_google_protobuf; fetching\n",
" Fetching ...otobuf; Extracting /root/.cache/bazel/_bazel_root/26321c5950fe\\\n",
"518aef514f9fb14403c6/external/com_google_protobuf/temp4567191513759322271/v3.9\\\n",
"\u001b[32mLoading:\u001b[0m 0 packages loaded\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (1 packages loaded, 0 targ\\\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (2 packages loaded, 0 targ\\\n",
"ets configured)\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (6 packages loaded, 7 targ\\\n",
"ets configured)\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (10 packages loaded, 7 tar\\\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (17 packages loaded, 24 ta\\\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (17 packages loaded, 24 ta\\\n",
"rgets configured)\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (17 packages loaded, 24 ta\\\n",
"rgets configured)\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (17 packages loaded, 24 ta\\\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (28 packages loaded, 31 ta\\\n",
"rgets configured)\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (35 packages loaded, 53 ta\\\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (41 packages loaded, 120 t\\\n",
"argets configured)\n",
" currently loading: @com_google_protobuf//\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (41 packages loaded, 129 t\\\n",
"argets configured)\n",
" currently loading: @com_google_protobuf//\n",
" Fetching @remote_coverage_tools; fetching\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (42 packages loaded, 129 t\\\n",
"argets configured)\n",
" Fetching @remote_coverage_tools; fetching\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (42 packages loaded, 129 t\\\n",
"argets configured)\n",
" Fetching @remote_coverage_tools; fetching\n",
" Fetching ..._tools; Extracting /root/.cache/bazel/_bazel_root/26321c5950fe\\\n",
"518aef514f9fb14403c6/external/remote_coverage_tools/temp12339349057625869/cove\\\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (43 packages loaded, 232 t\\\n",
"argets configured)\n",
" Fetching @remotejdk11_linux; fetching\n",
" Fetching https://mirror.bazel.build/...11.0.6-linux_x64.tar.gz; 7,110,608B\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (43 packages loaded, 232 t\\\n",
"argets configured)\n",
" Fetching @remotejdk11_linux; fetching\n",
" Fetching https://mirror.bazel.build/...1.0.6-linux_x64.tar.gz; 12,804,000B\n",
" Fetching @zlib; fetching\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (43 packages loaded, 232 t\\\n",
"argets configured)\n",
" Fetching @remotejdk11_linux; fetching\n",
" Fetching https://mirror.bazel.build/...1.0.6-linux_x64.tar.gz; 21,307,232B\n",
" Fetching @zlib; fetching\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (43 packages loaded, 232 t\\\n",
"argets configured)\n",
" Fetching @remotejdk11_linux; fetching\n",
" Fetching https://mirror.bazel.build/...1.0.6-linux_x64.tar.gz; 29,204,272B\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (45 packages loaded, 511 t\\\n",
"argets configured)\n",
" Fetching @remotejdk11_linux; fetching\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (46 packages loaded, 664 t\\\n",
"argets configured)\n",
" Fetching @remotejdk11_linux; fetching\n",
" Fetching https://mirror.bazel.build/...1.0.6-linux_x64.tar.gz; 39,509,728B\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (47 packages loaded, 720 t\\\n",
"argets configured)\n",
" Fetching @remotejdk11_linux; fetching\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (50 packages loaded, 751 t\\\n",
"argets configured)\n",
" Fetching @remotejdk11_linux; fetching\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (50 packages loaded, 830 t\\\n",
"argets configured)\n",
" Fetching @remotejdk11_linux; fetching\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (50 packages loaded, 880 t\\\n",
"argets configured)\n",
" Fetching @remotejdk11_linux; fetching\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (50 packages loaded, 889 t\\\n",
"argets configured)\n",
" Fetching @remotejdk11_linux; fetching\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (50 packages loaded, 891 t\\\n",
"argets configured)\n",
" Fetching @remotejdk11_linux; fetching\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (50 packages loaded, 894 t\\\n",
"argets configured)\n",
" Fetching @remotejdk11_linux; fetching\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (50 packages loaded, 933 t\\\n",
"argets configured)\n",
" Fetching @remotejdk11_linux; fetching\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (50 packages loaded, 994 t\\\n",
"argets configured)\n",
" Fetching @remotejdk11_linux; fetching\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (50 packages loaded, 1007 \\\n",
"targets configured)\n",
" Fetching @remotejdk11_linux; fetching\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (52 packages loaded, 1052 \\\n",
"targets configured)\n",
" Fetching @remotejdk11_linux; fetching\n",
" Fetching https://mirror.bazel.build/....0.6-linux_x64.tar.gz; 121,707,616B\n",
" Fetching @remote_java_tools_linux; fetching\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (52 packages loaded, 1052 \\\n",
"targets configured)\n",
" Fetching @remotejdk11_linux; fetching\n",
" Fetching https://mirror.bazel.build/....0.6-linux_x64.tar.gz; 127,687,744B\n",
" Fetching @remote_java_tools_linux; fetching\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (52 packages loaded, 1052 \\\n",
"targets configured)\n",
" Fetching @remotejdk11_linux; fetching 4s\n",
" Fetching https://mirror.bazel.build/...6-linux_x64.tar.gz; 134,847,488B 4s\n",
" Fetching @remote_java_tools_linux; fetching\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (52 packages loaded, 1052 \\\n",
"targets configured)\n",
" Fetching @remotejdk11_linux; fetching 4s\n",
" Fetching https://mirror.bazel.build/...6-linux_x64.tar.gz; 140,893,136B 4s\n",
" Fetching @remote_java_tools_linux; fetching\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (52 packages loaded, 1052 \\\n",
"targets configured)\n",
" Fetching @remotejdk11_linux; fetching 4s\n",
" Fetching https://mirror.bazel.build/...6-linux_x64.tar.gz; 148,954,000B 4s\n",
" Fetching @remote_java_tools_linux; fetching\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (52 packages loaded, 1052 \\\n",
"targets configured)\n",
" Fetching @remotejdk11_linux; fetching 4s\n",
" Fetching https://mirror.bazel.build/...6-linux_x64.tar.gz; 154,000,240B 4s\n",
" Fetching @remote_java_tools_linux; fetching\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (52 packages loaded, 1052 \\\n",
"targets configured)\n",
" Fetching @remotejdk11_linux; fetching 5s\n",
" Fetching https://mirror.bazel.build/...6-linux_x64.tar.gz; 158,456,656B 4s\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (52 packages loaded, 1052 \\\n",
"targets configured)\n",
" Fetching @remotejdk11_linux; fetching 5s\n",
" Fetching https://mirror.bazel.build/...6-linux_x64.tar.gz; 161,356,608B 5s\n",
" Fetching @remote_java_tools_linux; fetching\n",
" Fetching ..._linux; Extracting /root/.cache/bazel/_bazel_root/26321c5950fe\\\n",
"518aef514f9fb14403c6/external/remote_java_tools_linux/temp14870747643502763262\\\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (52 packages loaded, 1052 \\\n",
"targets configured)\n",
" Fetching @remotejdk11_linux; fetching 5s\n",
" Fetching https://mirror.bazel.build/...6-linux_x64.tar.gz; 168,418,048B 5s\n",
" Fetching @remote_java_tools_linux; fetching\n",
" Fetching ..._linux; Extracting /root/.cache/bazel/_bazel_root/26321c5950fe\\\n",
"518aef514f9fb14403c6/external/remote_java_tools_linux/temp14870747643502763262\\\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (52 packages loaded, 1052 \\\n",
"targets configured)\n",
" Fetching @remotejdk11_linux; fetching 5s\n",
" Fetching https://mirror.bazel.build/...6-linux_x64.tar.gz; 177,961,664B 5s\n",
" Fetching @remote_java_tools_linux; fetching\n",
" Fetching ..._linux; Extracting /root/.cache/bazel/_bazel_root/26321c5950fe\\\n",
"518aef514f9fb14403c6/external/remote_java_tools_linux/temp14870747643502763262\\\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (52 packages loaded, 1052 \\\n",
"targets configured)\n",
" Fetching @remotejdk11_linux; fetching 5s\n",
" Fetching https://mirror.bazel.build/...6-linux_x64.tar.gz; 189,504,096B 5s\n",
" Fetching @remote_java_tools_linux; fetching\n",
" Fetching ..._linux; Extracting /root/.cache/bazel/_bazel_root/26321c5950fe\\\n",
"518aef514f9fb14403c6/external/remote_java_tools_linux/temp14870747643502763262\\\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (52 packages loaded, 1052 \\\n",
"targets configured)\n",
" Fetching @remotejdk11_linux; fetching 6s\n",
" Fetching @remote_java_tools_linux; fetching\n",
" Fetching ..._linux; Extracting /root/.cache/bazel/_bazel_root/26321c5950fe\\\n",
"518aef514f9fb14403c6/external/remote_java_tools_linux/temp14870747643502763262\\\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (52 packages loaded, 1052 \\\n",
"targets configured)\n",
" Fetching @remotejdk11_linux; fetching 6s\n",
" Fetching @remote_java_tools_linux; fetching\n",
" Fetching ..._linux; Extracting /root/.cache/bazel/_bazel_root/26321c5950fe\\\n",
"518aef514f9fb14403c6/external/remote_java_tools_linux/temp14870747643502763262\\\n",
"/java_tools_javac11_linux-v10.6.zip\n",
" Fetching ..._linux; Extracting /root/.cache/bazel/_bazel_root/26321c5950fe\\\n",
"518aef514f9fb14403c6/external/remotejdk11_linux/temp15629557003974885926/zulu1\\\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (53 packages loaded, 1052 \\\n",
"targets configured)\n",
" Fetching @remotejdk11_linux; fetching 6s\n",
" Fetching ..._linux; Extracting /root/.cache/bazel/_bazel_root/26321c5950fe\\\n",
"518aef514f9fb14403c6/external/remotejdk11_linux/temp15629557003974885926/zulu1\\\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (53 packages loaded, 1079 \\\n",
"targets configured)\n",
" Fetching @remotejdk11_linux; fetching 7s\n",
" Fetching ..._linux; Extracting /root/.cache/bazel/_bazel_root/26321c5950fe\\\n",
"518aef514f9fb14403c6/external/remotejdk11_linux/temp15629557003974885926/zulu1\\\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (53 packages loaded, 1079 \\\n",
"targets configured)\n",
" Fetching @remotejdk11_linux; fetching 8s\n",
" Fetching ..._linux; Extracting /root/.cache/bazel/_bazel_root/26321c5950fe\\\n",
"518aef514f9fb14403c6/external/remotejdk11_linux/temp15629557003974885926/zulu1\\\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (53 packages loaded, 1079 \\\n",
"targets configured)\n",
" Fetching @remotejdk11_linux; fetching 9s\n",
" Fetching ..._linux; Extracting /root/.cache/bazel/_bazel_root/26321c5950fe\\\n",
"518aef514f9fb14403c6/external/remotejdk11_linux/temp15629557003974885926/zulu1\\\n",
"\u001b[32mAnalyzing:\u001b[0m target //keras/layers:convolutional_test (53 packages loaded, 1079 \\\n",
"targets configured)\n",
"\u001b[32mINFO: \u001b[0mAnalyzed target //keras/layers:convolutional_test (54 packages loaded, 1217 targets configured).\n",
"\u001b[32mINFO: \u001b[0mFound 1 test target...\n",
"\u001b[32m[8 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/compiler/main.cc [for host]; 0s local\n",
"\u001b[32m[8 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/compiler/main.cc [for host]; 1s local\n",
"\u001b[32m[9 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[9 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[10 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/compiler/plugin.pb.cc [for host]; 0s local\n",
"\u001b[32m[10 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/compiler/plugin.pb.cc [for host]; 1s local\n",
"\u001b[32m[10 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/compiler/plugin.pb.cc [for host]; 2s local\n",
"\u001b[32m[11 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/compiler/plugin.pb.cc [for host]; 2s local\n",
"\u001b[32m[12 / 188]\u001b[0m 2 actions running\n",
" Compiling inflate.c [for host]; 0s local\n",
"\u001b[32m[13 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[13 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[14 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[14 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[14 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[14 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 3s local\n",
"\u001b[32m[15 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 3s local\n",
"\u001b[32m[15 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 3s local\n",
"\u001b[32m[16 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[16 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[17 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[17 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[17 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[18 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 3s local\n",
"\u001b[32m[18 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 3s local\n",
"\u001b[32m[19 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[20 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[21 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[21 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[21 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[22 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[22 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[22 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[23 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 3s local\n",
"\u001b[32m[23 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 3s local\n",
"\u001b[32m[24 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[25 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[25 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[26 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[26 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[26 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[27 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 3s local\n",
"\u001b[32m[27 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 3s local\n",
"\u001b[32m[28 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 4s local\n",
"\u001b[32m[30 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[30 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[31 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[31 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[32 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[32 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[32 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[33 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[33 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[33 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 3s local\n",
"\u001b[32m[34 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[34 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[35 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[35 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[36 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/message_lite.cc [for host]; 1s local\n",
"\u001b[32m[36 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/message_lite.cc [for host]; 1s local\n",
"\u001b[32m[37 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/stubs/status.cc [for host]; 0s local\n",
"\u001b[32m[38 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[39 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[39 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[40 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[40 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[40 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[41 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/repeated_field.cc [for host]; 1s local\n",
"\u001b[32m[41 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/repeated_field.cc [for host]; 2s local\n",
"\u001b[32m[41 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/repeated_field.cc [for host]; 3s local\n",
"\u001b[32m[42 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[42 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[42 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[42 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 3s local\n",
"\u001b[32m[43 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 3s local\n",
"\u001b[32m[43 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 4s local\n",
"\u001b[32m[43 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 5s local\n",
"\u001b[32m[43 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 6s local\n",
"\u001b[32m[44 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 6s local\n",
"\u001b[32m[44 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 7s local\n",
"\u001b[32m[45 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 7s local\n",
"\u001b[32m[45 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 8s local\n",
"\u001b[32m[45 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 9s local\n",
"\u001b[32m[46 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[46 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[47 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[47 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[48 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[48 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[48 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[49 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[49 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[49 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 3s local\n",
"\u001b[32m[50 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[50 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[51 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[51 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[51 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[52 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protobuf; 2s local\n",
"\u001b[32m[53 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/generated_enum_util.cc [for host]; 0s local\n",
"\u001b[32m[54 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[54 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[54 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[55 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[55 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 3s local\n",
"\u001b[32m[56 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protobuf; 0s local\n",
"\u001b[32m[56 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 0s local\n",
"\u001b[32m[56 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 1s local\n",
"\u001b[32m[57 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[57 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[57 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 3s local\n",
"\u001b[32m[57 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 4s local\n",
"\u001b[32m[58 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[58 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 3s local\n",
"\u001b[32m[58 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 4s local\n",
"\u001b[32m[58 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 5s local\n",
"\u001b[32m[59 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[59 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 3s local\n",
"\u001b[32m[59 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 4s local\n",
"\u001b[32m[60 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protobuf; 1s local\n",
"\u001b[32m[60 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 2s local\n",
"\u001b[32m[61 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protobuf; 2s local\n",
"\u001b[32m[61 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 3s local\n",
"\u001b[32m[62 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[62 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[62 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[62 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[63 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[64 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[64 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[65 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[65 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[66 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[66 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[66 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[66 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 3s local\n",
"\u001b[32m[67 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[67 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 3s local\n",
"\u001b[32m[67 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 4s local\n",
"\u001b[32m[68 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protobuf; 1s local\n",
"\u001b[32m[68 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 2s local\n",
"\u001b[32m[69 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protobuf; 1s local\n",
"\u001b[32m[70 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 0s local\n",
"\u001b[32m[71 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protobuf; 0s local\n",
"\u001b[32m[71 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 0s local\n",
"\u001b[32m[72 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protobuf; 1s local\n",
"\u001b[32m[72 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 1s local\n",
"\u001b[32m[73 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 0s local\n",
"\u001b[32m[73 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 0s local\n",
"\u001b[32m[73 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 1s local\n",
"\u001b[32m[73 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 2s local\n",
"\u001b[32m[74 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 2s local\n",
"\u001b[32m[74 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 3s local\n",
"\u001b[32m[75 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 0s local\n",
"\u001b[32m[75 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 0s local\n",
"\u001b[32m[76 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protobuf; 1s local\n",
"\u001b[32m[76 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 1s local\n",
"\u001b[32m[77 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 0s local\n",
"\u001b[32m[77 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 0s local\n",
"\u001b[32m[77 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 1s local\n",
"\u001b[32m[77 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 2s local\n",
"\u001b[32m[78 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[78 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 3s local\n",
"\u001b[32m[78 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 4s local\n",
"\u001b[32m[78 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 5s local\n",
"\u001b[32m[79 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 5s local\n",
"\u001b[32m[80 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 6s local\n",
"\u001b[32m[80 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 6s local\n",
"\u001b[32m[81 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 6s local\n",
"\u001b[32m[81 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 7s local\n",
"\u001b[32m[81 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 8s local\n",
"\u001b[32m[82 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 8s local\n",
"\u001b[32m[82 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 9s local\n",
"\u001b[32m[83 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/source_context.pb.cc [for host]; 1s local\n",
"\u001b[32m[83 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/source_context.pb.cc [for host]; 1s local\n",
"\u001b[32m[84 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/service.cc [for host]; 0s local\n",
"\u001b[32m[85 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/reflection_ops.cc [for host]; 0s local\n",
"\u001b[32m[85 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/reflection_ops.cc [for host]; 1s local\n",
"\u001b[32m[86 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[86 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[87 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protobuf; 0s local\n",
"\u001b[32m[87 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 1s local\n",
"\u001b[32m[87 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 2s local\n",
"\u001b[32m[88 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 2s local\n",
"\u001b[32m[88 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 2s local\n",
"\u001b[32m[89 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/io/printer.cc [for host]; 1s local\n",
"\u001b[32m[90 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[90 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[90 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[90 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[91 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[92 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 0s local\n",
"\u001b[32m[92 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 1s local\n",
"\u001b[32m[93 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protobuf; 1s local\n",
"\u001b[32m[93 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 1s local\n",
"\u001b[32m[93 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 2s local\n",
"\u001b[32m[93 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 3s local\n",
"\u001b[32m[94 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 3s local\n",
"\u001b[32m[95 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 3s local\n",
"\u001b[32m[95 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 4s local\n",
"\u001b[32m[95 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 5s local\n",
"\u001b[32m[96 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 5s local\n",
"\u001b[32m[96 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 6s local\n",
"\u001b[32m[97 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 7s local\n",
"\u001b[32m[97 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 7s local\n",
"\u001b[32m[98 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[98 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[99 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/descriptor.pb.cc [for host]; 1s local\n",
"\u001b[32m[99 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/descriptor.pb.cc [for host]; 1s local\n",
"\u001b[32m[99 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/descriptor.pb.cc [for host]; 2s local\n",
"\u001b[32m[99 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/descriptor.pb.cc [for host]; 3s local\n",
"\u001b[32m[99 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/descriptor.pb.cc [for host]; 4s local\n",
"\u001b[32m[99 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/descriptor.pb.cc [for host]; 5s local\n",
"\u001b[32m[99 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/descriptor.pb.cc [for host]; 6s local\n",
"\u001b[32m[99 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/descriptor.pb.cc [for host]; 7s local\n",
"\u001b[32m[99 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/descriptor.pb.cc [for host]; 8s local\n",
"\u001b[32m[100 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/descriptor.cc [for host]; 7s local\n",
"\u001b[32m[100 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/descriptor.cc [for host]; 8s local\n",
"\u001b[32m[100 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/descriptor.cc [for host]; 9s local\n",
"\u001b[32m[100 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/descriptor.cc [for host]; 10s local\n",
"\u001b[32m[100 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/descriptor.cc [for host]; 11s local\n",
"\u001b[32m[100 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/descriptor.cc [for host]; 12s local\n",
"\u001b[32m[101 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/descriptor.cc [for host]; 12s local\n",
"\u001b[32m[101 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/descriptor.cc [for host]; 12s local\n",
"\u001b[32m[101 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/descriptor.cc [for host]; 13s local\n",
"\u001b[32m[102 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/descriptor.cc [for host]; 13s local\n",
"\u001b[32m[102 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/descriptor.cc [for host]; 14s local\n",
"\u001b[32m[103 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 0s local\n",
"\u001b[32m[104 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/any.pb.cc [for host]; 1s local\n",
"\u001b[32m[104 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/any.pb.cc [for host]; 1s local\n",
"\u001b[32m[106 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/any.cc [for host]; 0s local\n",
"\u001b[32m[106 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/any.cc [for host]; 0s local\n",
"\u001b[32m[107 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protobuf; 0s local\n",
"\u001b[32m[107 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 0s local\n",
"\u001b[32m[108 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[108 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[108 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[109 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[110 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[110 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 3s local\n",
"\u001b[32m[111 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/type.pb.cc [for host]; 2s local\n",
"\u001b[32m[111 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/type.pb.cc [for host]; 2s local\n",
"\u001b[32m[112 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[112 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[113 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[113 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[113 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[114 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 3s local\n",
"\u001b[32m[115 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 3s local\n",
"\u001b[32m[115 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 3s local\n",
"\u001b[32m[115 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 4s local\n",
"\u001b[32m[115 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 5s local\n",
"\u001b[32m[116 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[116 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[117 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[117 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[118 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/stubs/bytestream.cc [for host]; 0s local\n",
"\u001b[32m[119 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/wire_format_lite.cc [for host]; 0s local\n",
"\u001b[32m[119 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/wire_format_lite.cc [for host]; 1s local\n",
"\u001b[32m[120 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[120 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[121 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[122 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[123 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[123 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[123 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 3s local\n",
"\u001b[32m[124 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[124 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[125 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/text_format.cc [for host]; 0s local\n",
"\u001b[32m[126 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/text_format.cc [for host]; 1s local\n",
"\u001b[32m[126 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/text_format.cc [for host]; 1s local\n",
"\u001b[32m[126 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/text_format.cc [for host]; 2s local\n",
"\u001b[32m[126 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/text_format.cc [for host]; 3s local\n",
"\u001b[32m[126 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/text_format.cc [for host]; 4s local\n",
"\u001b[32m[127 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protobuf; 4s local\n",
"\u001b[32m[127 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 4s local\n",
"\u001b[32m[127 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 5s local\n",
"\u001b[32m[128 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[128 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[129 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/unknown_field_set.cc [for host]; 0s local\n",
"\u001b[32m[129 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/unknown_field_set.cc [for host]; 1s local\n",
"\u001b[32m[130 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/wire_format.cc [for host]; 0s local\n",
"\u001b[32m[130 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/wire_format.cc [for host]; 0s local\n",
"\u001b[32m[130 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/wire_format.cc [for host]; 1s local\n",
"\u001b[32m[130 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/wire_format.cc [for host]; 2s local\n",
"\u001b[32m[131 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/wire_format.cc [for host]; 3s local\n",
"\u001b[32m[131 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/wire_format.cc [for host]; 3s local\n",
"\u001b[32m[132 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[132 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[133 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf_lite; 0s local\n",
"\u001b[32m[133 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf_lite; 0s local\n",
"\u001b[32m[134 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/extension_set.cc [for host]; 0s local\n",
"\u001b[32m[134 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/extension_set.cc [for host]; 0s local\n",
"\u001b[32m[135 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/extension_set.cc [for host]; 1s local\n",
"\u001b[32m[135 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/extension_set.cc [for host]; 1s local\n",
"\u001b[32m[135 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/extension_set.cc [for host]; 2s local\n",
"\u001b[32m[136 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protobuf_lite; 2s local\n",
"\u001b[32m[136 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf_lite; 2s local\n",
"\u001b[32m[136 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf_lite; 3s local\n",
"\u001b[32m[137 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protobuf_lite; 3s local\n",
"\u001b[32m[137 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf_lite; 4s local\n",
"\u001b[32m[138 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/parse_context.cc [for host]; 0s local\n",
"\u001b[32m[138 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/parse_context.cc [for host]; 1s local\n",
"\u001b[32m[139 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/timestamp.pb.cc [for host]; 1s local\n",
"\u001b[32m[139 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/timestamp.pb.cc [for host]; 1s local\n",
"\u001b[32m[141 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protobuf_lite; 0s local\n",
"\u001b[32m[141 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf_lite; 0s local\n",
"\u001b[32m[142 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[142 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[142 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[143 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/struct.pb.cc [for host]; 2s local\n",
"\u001b[32m[144 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/struct.pb.cc [for host]; 2s local\n",
"\u001b[32m[144 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/struct.pb.cc [for host]; 3s local\n",
"\u001b[32m[145 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/message.cc [for host]; 1s local\n",
"\u001b[32m[145 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/message.cc [for host]; 2s local\n",
"\u001b[32m[146 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[146 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[147 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[147 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[147 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[148 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[148 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[149 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/extension_set_heavy.cc [for host]; 0s local\n",
"\u001b[32m[149 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/extension_set_heavy.cc [for host]; 0s local\n",
"\u001b[32m[149 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/extension_set_heavy.cc [for host]; 1s local\n",
"\u001b[32m[150 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[150 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[151 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/descriptor_database.cc [for host]; 0s local\n",
"\u001b[32m[151 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/descriptor_database.cc [for host]; 1s local\n",
"\u001b[32m[151 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/descriptor_database.cc [for host]; 2s local\n",
"\u001b[32m[151 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/descriptor_database.cc [for host]; 3s local\n",
"\u001b[32m[152 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/descriptor_database.cc [for host]; 3s local\n",
"\u001b[32m[153 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/compiler/importer.cc [for host]; 0s local\n",
"\u001b[32m[153 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/compiler/importer.cc [for host]; 0s local\n",
"\u001b[32m[153 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/compiler/importer.cc [for host]; 1s local\n",
"\u001b[32m[154 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[154 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[155 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[156 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[156 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[157 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[157 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[158 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[161 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/stubs/common.cc [for host]; 0s local\n",
"\u001b[32m[161 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/stubs/common.cc [for host]; 0s local\n",
"\u001b[32m[162 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/util/json_util.cc [for host]; 1s local\n",
"\u001b[32m[162 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/util/json_util.cc [for host]; 1s local\n",
"\u001b[32m[163 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/util/json_util.cc [for host]; 1s local\n",
"\u001b[32m[164 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/io/coded_stream.cc [for host]; 0s local\n",
"\u001b[32m[164 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/io/coded_stream.cc [for host]; 0s local\n",
"\u001b[32m[165 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/io/coded_stream.cc [for host]; 0s local\n",
"\u001b[32m[166 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[166 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[167 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[167 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[168 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[168 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[169 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[169 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[170 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[170 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[171 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[171 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[173 / 188]\u001b[0m 2 actions, 0 running\n",
" [Scann] Compiling src/google/protobuf/map_field.cc [for host]\n",
"\u001b[32m[173 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/map_field.cc [for host]; 0s local\n",
"\u001b[32m[174 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/map_field.cc [for host]; 0s local\n",
"\u001b[32m[174 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/map_field.cc [for host]; 0s local\n",
"\u001b[32m[174 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/map_field.cc [for host]; 1s local\n",
"\u001b[32m[174 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/map_field.cc [for host]; 2s local\n",
"\u001b[32m[175 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/map_field.cc [for host]; 3s local\n",
"\u001b[32m[176 / 188]\u001b[0m 2 actions, 1 running\n",
" Compiling src/google/protobuf/empty.pb.cc [for host]; 0s local\n",
"\u001b[32m[176 / 188]\u001b[0m 2 actions running\n",
" Compiling src/google/protobuf/empty.pb.cc [for host]; 0s local\n",
"\u001b[32m[177 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[177 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[177 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[178 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 3s local\n",
"\u001b[32m[178 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 3s local\n",
"\u001b[32m[178 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 4s local\n",
"\u001b[32m[179 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[179 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[180 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[180 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[181 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 0s local\n",
"\u001b[32m[181 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[181 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[182 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protoc_lib; 1s local\n",
"\u001b[32m[182 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protoc_lib; 2s local\n",
"\u001b[32m[183 / 188]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protobuf; 0s local\n",
"\u001b[32m[183 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 0s local\n",
"\u001b[32m[183 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 2s local\n",
"\u001b[32m[183 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 3s local\n",
"\u001b[32m[183 / 188]\u001b[0m 2 actions running\n",
" @com_google_protobuf//:protobuf; 4s local\n",
"\u001b[32m[184 / 201]\u001b[0m 2 actions, 1 running\n",
" @com_google_protobuf//:protobuf; 4s local\n",
"\u001b[32m[203 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[203 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[203 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[203 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[203 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[203 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[203 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[203 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[203 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[203 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[203 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[203 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[203 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[203 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[203 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[203 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[203 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[203 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[203 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[203 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[204 / 211]\u001b[0m 2 actions, 1 running\n",
"\u001b[32m[204 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[204 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[204 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[204 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[204 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[204 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[204 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[204 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[204 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[204 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[204 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[204 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[204 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[205 / 211]\u001b[0m 2 actions, 1 running\n",
"\u001b[32m[205 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[205 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[205 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[205 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[205 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[205 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[205 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[205 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[205 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[205 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[205 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[206 / 211]\u001b[0m 2 actions, 1 running\n",
"\u001b[32m[206 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[206 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[206 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[206 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[206 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[206 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[206 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[206 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[206 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[206 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[206 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[206 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[206 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[206 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[206 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[207 / 211]\u001b[0m 2 actions, 1 running\n",
"\u001b[32m[207 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[207 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[207 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[207 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[207 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[207 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[207 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[208 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[208 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[208 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[208 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[208 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[208 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[208 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[208 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[208 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[208 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[208 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[208 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[208 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[208 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[208 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[208 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[209 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[209 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[209 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[209 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[209 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[209 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[209 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[209 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[209 / 211]\u001b[0m 2 actions running\n",
"\u001b[32m[210 / 211]\u001b[0m 1 / 1 tests;\u001b[0m 1 action\u001b[0m; last test: \u001b[32m.../layers:convolutional_test\u001b[0m\u001b[0m\n",
"Target //keras/layers:convolutional_test up-to-date:\n",
" bazel-bin/keras/layers/convolutional_test\n",
"\u001b[32mINFO: \u001b[0mElapsed time: 335.844s, Critical Path: 47.44s\n",
"\u001b[32mINFO: \u001b[0m211 processes: 8 internal, 203 local.\n",
"\u001b[32mINFO:\u001b[0m Build completed successfully, 211 total actions\n",
"//keras/layers:convolutional_test \u001b[0m\u001b[32mPASSED\u001b[0m in 32.5s\n",
" Stats over 8 runs: max = 32.5s, min = 18.7s, avg = 22.9s, dev = 4.1s\n",
"\n",
"Executed 1 out of 1 test: 1 test passes.\n",
"\u001b[32mINFO:\u001b[0m Build completed successfully, 211 total actions\n",
"\u001b[0m"
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment