bazel build //cmd/otel:otel_lib working now #2240

Merged
mfreeman451 merged 3 commits from refs/pull/2240/head into main 2025-09-25 00:21:14 +00:00
mfreeman451 commented 2025-09-24 23:54:54 +00:00 (Migrated from github.com)
Owner

Imported from GitHub pull request.

Original GitHub pull request: #1660
Original author: @mfreeman451
Original URL: https://github.com/carverauto/serviceradar/pull/1660
Original created: 2025-09-24T23:54:54Z
Original updated: 2025-09-25T00:21:25Z
Original head: carverauto/serviceradar:bug/otel_let
Original base: main
Original merged: 2025-09-25T00:21:14Z by @mfreeman451

PR Type

Bug fix


Description

  • Fix Rust let-chain syntax for Bazel compatibility

  • Refactor nested if-let patterns to separate statements

  • Update RPM spec to filter vendor artifacts by architecture


Diagram Walkthrough

flowchart LR
  A["Rust let-chain syntax"] --> B["Separate if-let statements"]
  C["RPM vendor artifacts"] --> D["Architecture-filtered artifacts"]

File Walkthrough

Relevant files
Bug fix
lib.rs
Fix let-chain syntax in trace processing                                 

cmd/otel/src/lib.rs

  • Replace chained if-let expressions with nested if statements
  • Fix span attribute extraction logic for Bazel compatibility
  • Refactor NATS performance metrics publishing code
+16/-15 
main.rs
Fix let-chain syntax in configuration loading                       

cmd/otel/src/main.rs

  • Convert chained if-let patterns to nested if statements
  • Refactor KV client configuration loading logic
  • Maintain same functionality with Bazel-compatible syntax
+17/-14 
Enhancement
serviceradar-kong.spec
Filter vendor artifacts by architecture                                   

packaging/specs/serviceradar-kong.spec

  • Add architecture variable for vendor artifact filtering
  • Filter RPM packages by target architecture during install
  • Remove DEB package handling from RPM spec
+13/-5   

Imported from GitHub pull request. Original GitHub pull request: #1660 Original author: @mfreeman451 Original URL: https://github.com/carverauto/serviceradar/pull/1660 Original created: 2025-09-24T23:54:54Z Original updated: 2025-09-25T00:21:25Z Original head: carverauto/serviceradar:bug/otel_let Original base: main Original merged: 2025-09-25T00:21:14Z by @mfreeman451 --- ### **PR Type** Bug fix ___ ### **Description** - Fix Rust let-chain syntax for Bazel compatibility - Refactor nested if-let patterns to separate statements - Update RPM spec to filter vendor artifacts by architecture ___ ### Diagram Walkthrough ```mermaid flowchart LR A["Rust let-chain syntax"] --> B["Separate if-let statements"] C["RPM vendor artifacts"] --> D["Architecture-filtered artifacts"] ``` <details> <summary><h3> File Walkthrough</h3></summary> <table><thead><tr><th></th><th align="left">Relevant files</th></tr></thead><tbody><tr><td><strong>Bug fix</strong></td><td><table> <tr> <td> <details> <summary><strong>lib.rs</strong><dd><code>Fix let-chain syntax in trace processing</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr> cmd/otel/src/lib.rs <ul><li>Replace chained if-let expressions with nested if statements<br> <li> Fix span attribute extraction logic for Bazel compatibility<br> <li> Refactor NATS performance metrics publishing code</ul> </details> </td> <td><a href="https://github.com/carverauto/serviceradar/pull/1660/files#diff-8295e6c8105718065b7c8b401cee9efc20e2eb5010b2e1f8d91afe670498e2f7">+16/-15</a>&nbsp; </td> </tr> <tr> <td> <details> <summary><strong>main.rs</strong><dd><code>Fix let-chain syntax in configuration loading</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr> cmd/otel/src/main.rs <ul><li>Convert chained if-let patterns to nested if statements<br> <li> Refactor KV client configuration loading logic<br> <li> Maintain same functionality with Bazel-compatible syntax</ul> </details> </td> <td><a href="https://github.com/carverauto/serviceradar/pull/1660/files#diff-0928ea32b4e5970a3103f9391ff4debac80f03967326e55aafabca9b95b6c86e">+17/-14</a>&nbsp; </td> </tr> </table></td></tr><tr><td><strong>Enhancement</strong></td><td><table> <tr> <td> <details> <summary><strong>serviceradar-kong.spec</strong><dd><code>Filter vendor artifacts by architecture</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr> packaging/specs/serviceradar-kong.spec <ul><li>Add architecture variable for vendor artifact filtering<br> <li> Filter RPM packages by target architecture during install<br> <li> Remove DEB package handling from RPM spec</ul> </details> </td> <td><a href="https://github.com/carverauto/serviceradar/pull/1660/files#diff-e1be0e25d1d167a40c46c2b32773948a0e0df715f27f9cf4c011fec892b27583">+13/-5</a>&nbsp; &nbsp; </td> </tr> </table></td></tr></tr></tbody></table> </details> ___
qodo-code-review[bot] commented 2025-09-24 23:55:30 +00:00 (Migrated from github.com)
Author
Owner

Imported GitHub PR comment.

Original author: @qodo-code-review[bot]
Original URL: https://github.com/carverauto/serviceradar/pull/1660#issuecomment-3331099498
Original created: 2025-09-24T23:55:30Z

PR Reviewer Guide 🔍

Here are some key observations to aid the review process:

⏱️ Estimated effort to review: 2 🔵🔵
🧪 No relevant tests
🔒 No security concerns identified
 Recommended focus areas for review

Attribute Map Lifetime

Inserting attr.key.as_str() and s.as_str() into span_attrs assumes the map stores borrowed str with lifetimes tied to attr/s. If span_attrs is HashMap<String,String> this will not compile; if it’s HashMap<&str,&str> ensure the references remain valid beyond the loop and through later usage.

let mut span_attrs = std::collections::HashMap::new();
for attr in &span.attributes {
    if let Some(value) = &attr.value {
        if let Some(
            opentelemetry::proto::common::v1::any_value::Value::StringValue(s),
        ) = &value.value
        {
            span_attrs.insert(attr.key.as_str(), s.as_str());
        }
    }
Silent Errors

Multiple nested ifs silently ignore parse/IO errors (KV connect/get/parse). Consider logging at least debug/warn to aid troubleshooting when config cannot be fetched or parsed.

if use_kv {
    if let Ok(mut kv) = KvClient::connect_from_env().await {
        // Initial fetch
        if let Ok(Some(bytes)) = kv.get(CONFIG_PATH).await {
            if let Ok(s) = std::str::from_utf8(&bytes) {
                if let Ok(new_cfg) = toml::from_str::<otel::config::Config>(s) {
                    config = new_cfg;
                }
            }
        }
        // Bootstrap current config if missing
        if let Ok(None) = kv.get(CONFIG_PATH).await {
            if let Ok(content) = toml::to_string_pretty(&config) {
                let _ = kv.put_if_absent(CONFIG_PATH, content.into_bytes()).await;
            }
        }
        kv_client = Some(kv);
    }
}
Arch Pattern Matching

The case pattern *.%{kong_vendor_arch}.rpm relies on exact _target_cpu matching vendor filenames. Validate compatibility for common values (e.g., x86_64 vs amd64) to avoid skipping valid artifacts.

# Copy vendor RPMs that match this build's architecture; skip others

for artifact in \
  %{_sourcedir}/packaging/kong/vendor/kong-enterprise-edition-*.rpm \
  %{_sourcedir}/packaging/kong/vendor/kong-*.rpm; do
  if [ -f "$artifact" ]; then
    case "$artifact" in
      *.%{kong_vendor_arch}.rpm)
        install -m 644 "$artifact" %{buildroot}/usr/share/serviceradar-kong/vendor/
        ;;
      *)
        echo "Skipping non-%{kong_vendor_arch} vendor artifact $(basename "$artifact")"
        ;;
    esac
  fi
Imported GitHub PR comment. Original author: @qodo-code-review[bot] Original URL: https://github.com/carverauto/serviceradar/pull/1660#issuecomment-3331099498 Original created: 2025-09-24T23:55:30Z --- ## PR Reviewer Guide 🔍 Here are some key observations to aid the review process: <table> <tr><td>⏱️&nbsp;<strong>Estimated effort to review</strong>: 2 🔵🔵⚪⚪⚪</td></tr> <tr><td>🧪&nbsp;<strong>No relevant tests</strong></td></tr> <tr><td>🔒&nbsp;<strong>No security concerns identified</strong></td></tr> <tr><td>⚡&nbsp;<strong>Recommended focus areas for review</strong><br><br> <details><summary><a href='https://github.com/carverauto/serviceradar/pull/1660/files#diff-8295e6c8105718065b7c8b401cee9efc20e2eb5010b2e1f8d91afe670498e2f7R206-R215'><strong>Attribute Map Lifetime</strong></a> Inserting `attr.key.as_str()` and `s.as_str()` into `span_attrs` assumes the map stores borrowed str with lifetimes tied to `attr`/`s`. If `span_attrs` is `HashMap<String,String>` this will not compile; if it’s `HashMap<&str,&str>` ensure the references remain valid beyond the loop and through later usage. </summary> ```rust let mut span_attrs = std::collections::HashMap::new(); for attr in &span.attributes { if let Some(value) = &attr.value { if let Some( opentelemetry::proto::common::v1::any_value::Value::StringValue(s), ) = &value.value { span_attrs.insert(attr.key.as_str(), s.as_str()); } } ``` </details> <details><summary><a href='https://github.com/carverauto/serviceradar/pull/1660/files#diff-0928ea32b4e5970a3103f9391ff4debac80f03967326e55aafabca9b95b6c86eR25-R43'><strong>Silent Errors</strong></a> Multiple nested ifs silently ignore parse/IO errors (KV connect/get/parse). Consider logging at least debug/warn to aid troubleshooting when config cannot be fetched or parsed. </summary> ```rust if use_kv { if let Ok(mut kv) = KvClient::connect_from_env().await { // Initial fetch if let Ok(Some(bytes)) = kv.get(CONFIG_PATH).await { if let Ok(s) = std::str::from_utf8(&bytes) { if let Ok(new_cfg) = toml::from_str::<otel::config::Config>(s) { config = new_cfg; } } } // Bootstrap current config if missing if let Ok(None) = kv.get(CONFIG_PATH).await { if let Ok(content) = toml::to_string_pretty(&config) { let _ = kv.put_if_absent(CONFIG_PATH, content.into_bytes()).await; } } kv_client = Some(kv); } } ``` </details> <details><summary><a href='https://github.com/carverauto/serviceradar/pull/1660/files#diff-e1be0e25d1d167a40c46c2b32773948a0e0df715f27f9cf4c011fec892b27583R39-R53'><strong>Arch Pattern Matching</strong></a> The case pattern `*.%{kong_vendor_arch}.rpm` relies on exact `_target_cpu` matching vendor filenames. Validate compatibility for common values (e.g., x86_64 vs amd64) to avoid skipping valid artifacts. </summary> ```txt # Copy vendor RPMs that match this build's architecture; skip others for artifact in \ %{_sourcedir}/packaging/kong/vendor/kong-enterprise-edition-*.rpm \ %{_sourcedir}/packaging/kong/vendor/kong-*.rpm; do if [ -f "$artifact" ]; then case "$artifact" in *.%{kong_vendor_arch}.rpm) install -m 644 "$artifact" %{buildroot}/usr/share/serviceradar-kong/vendor/ ;; *) echo "Skipping non-%{kong_vendor_arch} vendor artifact $(basename "$artifact")" ;; esac fi ``` </details> </td></tr> </table>
qodo-code-review[bot] commented 2025-09-24 23:56:23 +00:00 (Migrated from github.com)
Author
Owner

Imported GitHub PR comment.

Original author: @qodo-code-review[bot]
Original URL: https://github.com/carverauto/serviceradar/pull/1660#issuecomment-3331100585
Original created: 2025-09-24T23:56:23Z

PR Code Suggestions

Explore these optional code suggestions:

CategorySuggestion                                                                                                                                    Impact
General
Avoid redundant network calls for configuration
Suggestion Impact:The commit refactored the logic to use a single kv.get(CONFIG_PATH).await within a match, eliminating the redundant second get and adding error logging; it also slightly restructured connection handling.

code diff:

+    match kv_connection {
+        Some(Ok(mut kv)) => {
+            match kv.get(CONFIG_PATH).await {
+                Ok(Some(bytes)) => {
+                    if let Some(new_cfg) = std::str::from_utf8(&bytes)
+                        .ok()
+                        .and_then(|s| toml::from_str::<otel::config::Config>(s).ok())
+                    {
                         config = new_cfg;
                     }
                 }
-            }
-            // Bootstrap current config if missing
-            if let Ok(None) = kv.get(CONFIG_PATH).await {
-                if let Ok(content) = toml::to_string_pretty(&config) {
-                    let _ = kv.put_if_absent(CONFIG_PATH, content.into_bytes()).await;
+                Ok(None) => {
+                    if let Ok(content) = toml::to_string_pretty(&config) {
+                        let _ = kv.put_if_absent(CONFIG_PATH, content.into_bytes()).await;
+                    }
+                }
+                Err(err) => {
+                    log::warn!(
+                        "Failed to fetch OTEL config from KV at {}: {err}",
+                        CONFIG_PATH
+                    );
                 }
             }
             kv_client = Some(kv);
         }

Refactor the key-value store logic to use a single kv.get() call followed by a
match statement. This avoids a redundant network request when checking for and
bootstrapping the configuration.

cmd/otel/src/main.rs [25-43]

 if use_kv {
     if let Ok(mut kv) = KvClient::connect_from_env().await {
-        // Initial fetch
-        if let Ok(Some(bytes)) = kv.get(CONFIG_PATH).await {
-            if let Ok(s) = std::str::from_utf8(&bytes) {
-                if let Ok(new_cfg) = toml::from_str::<otel::config::Config>(s) {
-                    config = new_cfg;
+        match kv.get(CONFIG_PATH).await {
+            Ok(Some(bytes)) => {
+                // Config exists, try to parse and apply it
+                if let Ok(s) = std::str::from_utf8(&bytes) {
+                    if let Ok(new_cfg) = toml::from_str::<otel::config::Config>(s) {
+                        config = new_cfg;
+                    }
                 }
             }
-        }
-        // Bootstrap current config if missing
-        if let Ok(None) = kv.get(CONFIG_PATH).await {
-            if let Ok(content) = toml::to_string_pretty(&config) {
-                let _ = kv.put_if_absent(CONFIG_PATH, content.into_bytes()).await;
+            Ok(None) => {
+                // Config is missing, bootstrap it
+                if let Ok(content) = toml::to_string_pretty(&config) {
+                    let _ = kv.put_if_absent(CONFIG_PATH, content.into_bytes()).await;
+                }
+            }
+            Err(_) => {
+                // Handle error if needed, e.g., log it.
             }
         }
         kv_client = Some(kv);
     }
 }

[Suggestion processed]

Suggestion importance[1-10]: 7

__

Why: The suggestion correctly identifies a redundant network call to the key-value store and proposes an efficient solution using a match statement, which improves performance and code clarity.

Medium
  • Update
Imported GitHub PR comment. Original author: @qodo-code-review[bot] Original URL: https://github.com/carverauto/serviceradar/pull/1660#issuecomment-3331100585 Original created: 2025-09-24T23:56:23Z --- ## PR Code Suggestions ✨ <!-- a07a04d --> Explore these optional code suggestions: <table><thead><tr><td><strong>Category</strong></td><td align=left><strong>Suggestion&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </strong></td><td align=center><strong>Impact</strong></td></tr><tbody><tr><td rowspan=1>General</td> <td> <details><summary>✅ <s>Avoid redundant network calls for configuration</s></summary> ___ <details><summary><b>Suggestion Impact:</b></summary>The commit refactored the logic to use a single kv.get(CONFIG_PATH).await within a match, eliminating the redundant second get and adding error logging; it also slightly restructured connection handling. code diff: ```diff + match kv_connection { + Some(Ok(mut kv)) => { + match kv.get(CONFIG_PATH).await { + Ok(Some(bytes)) => { + if let Some(new_cfg) = std::str::from_utf8(&bytes) + .ok() + .and_then(|s| toml::from_str::<otel::config::Config>(s).ok()) + { config = new_cfg; } } - } - // Bootstrap current config if missing - if let Ok(None) = kv.get(CONFIG_PATH).await { - if let Ok(content) = toml::to_string_pretty(&config) { - let _ = kv.put_if_absent(CONFIG_PATH, content.into_bytes()).await; + Ok(None) => { + if let Ok(content) = toml::to_string_pretty(&config) { + let _ = kv.put_if_absent(CONFIG_PATH, content.into_bytes()).await; + } + } + Err(err) => { + log::warn!( + "Failed to fetch OTEL config from KV at {}: {err}", + CONFIG_PATH + ); } } kv_client = Some(kv); } ``` </details> ___ **Refactor the key-value store logic to use a single <code>kv.get()</code> call followed by a <br><code>match</code> statement. This avoids a redundant network request when checking for and <br>bootstrapping the configuration.** [cmd/otel/src/main.rs [25-43]](https://github.com/carverauto/serviceradar/pull/1660/files#diff-0928ea32b4e5970a3103f9391ff4debac80f03967326e55aafabca9b95b6c86eR25-R43) ```diff if use_kv { if let Ok(mut kv) = KvClient::connect_from_env().await { - // Initial fetch - if let Ok(Some(bytes)) = kv.get(CONFIG_PATH).await { - if let Ok(s) = std::str::from_utf8(&bytes) { - if let Ok(new_cfg) = toml::from_str::<otel::config::Config>(s) { - config = new_cfg; + match kv.get(CONFIG_PATH).await { + Ok(Some(bytes)) => { + // Config exists, try to parse and apply it + if let Ok(s) = std::str::from_utf8(&bytes) { + if let Ok(new_cfg) = toml::from_str::<otel::config::Config>(s) { + config = new_cfg; + } } } - } - // Bootstrap current config if missing - if let Ok(None) = kv.get(CONFIG_PATH).await { - if let Ok(content) = toml::to_string_pretty(&config) { - let _ = kv.put_if_absent(CONFIG_PATH, content.into_bytes()).await; + Ok(None) => { + // Config is missing, bootstrap it + if let Ok(content) = toml::to_string_pretty(&config) { + let _ = kv.put_if_absent(CONFIG_PATH, content.into_bytes()).await; + } + } + Err(_) => { + // Handle error if needed, e.g., log it. } } kv_client = Some(kv); } } ``` `[Suggestion processed]` <details><summary>Suggestion importance[1-10]: 7</summary> __ Why: The suggestion correctly identifies a redundant network call to the key-value store and proposes an efficient solution using a `match` statement, which improves performance and code clarity. </details></details></td><td align=center>Medium </td></tr> <tr><td align="center" colspan="2"> - [ ] Update <!-- /improve_multi --more_suggestions=true --> </td><td></td></tr></tbody></table>
qodo-code-review[bot] commented 2025-09-25 00:21:25 +00:00 (Migrated from github.com)
Author
Owner

Imported GitHub PR comment.

Original author: @qodo-code-review[bot]
Original URL: https://github.com/carverauto/serviceradar/pull/1660#issuecomment-3331150633
Original created: 2025-09-25T00:21:25Z

CI Feedback 🧐

A test triggered by this PR failed. Here is an AI-generated analysis of the failure:

Action: build

Failed stage: Test []

Failure summary:

Bazel failed during analysis because the opam toolchain setup (OCaml 4.14.2 switch) could not be
created inside the CI sandbox. The critical error is:
- In
/home/runner/.bazel/external/tools_opam+/extensions/opam/opam_toolchain_xdg.bzl:242:17, the
extension called fail() with: "opam switch create failed".
- The underlying opam failure shows
bwrap: loopback: Failed RTM_NEWADDR: Operation not permitted while compiling
ocaml-base-compiler.4.14.2, indicating bubblewrap/network namespace operation is not permitted in
the GitHub runner environment.
- Due to the failed module extension
@@tools_opam+//extensions:opam.bzl%opam, many targets could not be analyzed, leading to "command
succeeded, but not all targets were analyzed" and ultimately "No test targets were found, yet
testing was requested".
- Key log lines:
-
/home/runner/.bazel/external/tools_opam+/extensions/opam/opam_toolchain_xdg.bzl:242:17
- Error in
fail: opam switch create failed; rc=31; output shows bwrap: loopback: Failed RTM_NEWADDR: Operation
not permitted.

Relevant error logs:
1:  ##[group]Runner Image Provisioner
2:  Hosted Compute Agent
...

302:  (00:19:55) ^[[35mWARNING: ^[[0mThe following configs were expanded more than once: [remote]. For repeatable flags, repeats are counted twice and may lead to unexpected behavior.
303:  (00:19:55) ^[[35mWARNING: ^[[0moption '--remote_timeout' was expanded to from both option '--config=ci' (source command line options) and option '--config=ci' (source command line options)
304:  (00:19:55) ^[[32mINFO: ^[[0mInvocation ID: 48eddd8c-e528-4b54-b31b-075b508e8bb4
305:  (00:19:55) ^[[32mINFO: ^[[0mStreaming build results to: ^[[36mhttps://app.buildbuddy.io/invocation/48eddd8c-e528-4b54-b31b-075b508e8bb4^[[0m
306:  (00:19:55) ^[[32mINFO: ^[[0mReading 'startup' options from /home/runner/work/serviceradar/serviceradar/.bazelrc: --max_idle_secs=60
307:  (00:19:55) ^[[32mINFO: ^[[0mReading 'startup' options from /home/runner/.bazelrc: --output_base=/home/runner/.bazel
308:  (00:19:55) ^[[32mINFO: ^[[0mOptions provided by the client:
309:  Inherited 'common' options: --isatty=0 --terminal_columns=80
310:  (00:19:55) ^[[32mINFO: ^[[0mReading rc options for 'test' from /home/runner/work/serviceradar/serviceradar/.bazelrc:
311:  Inherited 'common' options: --announce_rc --experimental_convenience_symlinks=clean --color=yes --curses=yes
312:  (00:19:55) ^[[32mINFO: ^[[0mReading rc options for 'test' from /home/runner/work/serviceradar/serviceradar/.bazelrc.remote:
313:  Inherited 'common' options: --remote_header=x-buildbuddy-api-key=***
314:  (00:19:55) ^[[32mINFO: ^[[0mReading rc options for 'test' from /home/runner/work/serviceradar/serviceradar/.bazelrc:
315:  Inherited 'build' options: --keep_going --jobs=auto --show_timestamps --action_env=OPENSSL_NO_PKG_CONFIG=1 --java_runtime_version=local_jdk --tool_java_runtime_version=local_jdk --build_metadata=REPO_URL=git@github.com:carverauto/serviceradar.git
316:  (00:19:55) ^[[32mINFO: ^[[0mReading rc options for 'test' from /home/runner/work/serviceradar/serviceradar/.bazelrc:
317:  'test' options: --test_output=errors --action_env=OPENSSL_NO_PKG_CONFIG=1 --flaky_test_attempts=2
318:  (00:19:55) ^[[32mINFO: ^[[0mFound applicable config definition build:ci in file /home/runner/work/serviceradar/serviceradar/.bazelrc: --keep_going --build_tag_filters=-manual --config=remote --build_metadata=ROLE=CI --bes_results_url=https://app.buildbuddy.io/invocation/ --bes_backend=grpcs://remote.buildbuddy.io --remote_timeout=15m
319:  (00:19:55) ^[[32mINFO: ^[[0mFound applicable config definition build:remote in file /home/runner/work/serviceradar/serviceradar/.bazelrc: --remote_executor=grpcs://remote.buildbuddy.io --host_platform=//:rbe_linux_amd64 --platforms=//:rbe_linux_amd64 --extra_execution_platforms=//:rbe_linux_amd64,//:rbe_linux_arm64 --crosstool_top=@buildbuddy_toolchain//:toolchain --extra_toolchains=@buildbuddy_toolchain//:cc_toolchain --repo_env=BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 --copt=-Wno-use-after-free --java_language_version=11 --tool_java_language_version=11 --java_runtime_version=remotejdk_11 --tool_java_runtime_version=remotejdk_11 --define=EXECUTOR=remote --incompatible_strict_action_env --remote_timeout=10m --strategy=CompileOCamlModule=local --strategy=CompileOCamlLibrary=local --strategy=CompileOCamlArchive=local --strategy=OcamlPack=local --strategy=OcamlLink=local
320:  (00:19:55) ^[[32mINFO: ^[[0mFound applicable config definition test:remote in file /home/runner/work/serviceradar/serviceradar/.bazelrc: --copt=-Wno-use-after-free
321:  (00:19:55) ^[[32mINFO: ^[[0mFound applicable config definition test:ci in file /home/runner/work/serviceradar/serviceradar/.bazelrc: --config=remote --test_tag_filters=-manual --test_output=errors
322:  (00:19:55) ^[[32mINFO: ^[[0mFound applicable config definition build:remote in file /home/runner/work/serviceradar/serviceradar/.bazelrc: --remote_executor=grpcs://remote.buildbuddy.io --host_platform=//:rbe_linux_amd64 --platforms=//:rbe_linux_amd64 --extra_execution_platforms=//:rbe_linux_amd64,//:rbe_linux_arm64 --crosstool_top=@buildbuddy_toolchain//:toolchain --extra_toolchains=@buildbuddy_toolchain//:cc_toolchain --repo_env=BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 --copt=-Wno-use-after-free --java_language_version=11 --tool_java_language_version=11 --java_runtime_version=remotejdk_11 --tool_java_runtime_version=remotejdk_11 --define=EXECUTOR=remote --incompatible_strict_action_env --remote_timeout=10m --strategy=CompileOCamlModule=local --strategy=CompileOCamlLibrary=local --strategy=CompileOCamlArchive=local --strategy=OcamlPack=local --strategy=OcamlLink=local
...

1914:  ^[[1A^[[K
1915:  ^[[1A^[[K
1916:  ^[[1A^[[K
1917:  ^[[1A^[[K
1918:  ^[[1A^[[K(00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
1919:  )
1920:  ^[[32m[1 / 1]^[[0m no actions running
1921:  Fetching ...l%opam; 
1922:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
1923:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
1924:  ^[[1A^[[K
1925:  ^[[1A^[[K
1926:  ^[[1A^[[K
1927:  ^[[1A^[[K
1928:  ^[[1A^[[K
1929:  ^[[1A^[[K(00:20:49) ^[[31m^[[1mERROR: ^[[0m/home/runner/.bazel/external/tools_opam+/extensions/opam/opam_toolchain_xdg.bzl:242:17: Traceback (most recent call last):
1930:  File "/home/runner/.bazel/external/tools_opam+/extensions/opam.bzl", line 422, column 53, in _opam_ext_impl
1931:  ocaml_version, deps) = config_xdg_toolchain(
1932:  File "/home/runner/.bazel/external/tools_opam+/extensions/opam/opam_toolchain_xdg.bzl", line 308, column 45, in config_xdg_toolchain
1933:  ocaml_version) = _create_switch(mctx, opambin,
1934:  File "/home/runner/.bazel/external/tools_opam+/extensions/opam/opam_toolchain_xdg.bzl", line 242, column 17, in _create_switch
1935:  fail("opam switch create failed; cmd=%s rc=%s\nstdout:%s\nstderr:%s" % (
1936:  Error in fail: opam switch create failed; cmd=["/home/runner/.local/share/obazl/opam/2.3.0/bin/opam", "switch", "create", "4.14.2", "4.14.2", "--root=/home/runner/.local/share/obazl/opam/2.3.0/root"] rc=31
1937:  stdout:
1938:  <><> Installing new switch packages <><><><><><><><><><><><><><><><><><><><><><>
1939:  Switch invariant: ["ocaml-base-compiler" {= "4.14.2"} | "ocaml-system" {= "4.14.2"}]
1940:  <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
1941:  ∗ installed base-bigarray.base
1942:  ∗ installed base-threads.base
1943:  ∗ installed base-unix.base
1944:  ∗ installed ocaml-options-vanilla.1
1945:  ⬇ retrieved ocaml-config.2  (2 extra sources)
1946:  ⬇ retrieved ocaml-config.2  (2 extra sources)
1947:  ⬇ retrieved ocaml-base-compiler.4.14.2  (https://opam.ocaml.org/cache)
1948:  <><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
1949:  ┌─ The following actions failed
1950:  │ λ build ocaml-base-compiler 4.14.2
1951:  └─ 
1952:  ┌─ The following changes have been performed (the rest was aborted)
1953:  │ ∗ install base-bigarray         base
1954:  │ ∗ install base-threads          base
1955:  │ ∗ install base-unix             base
1956:  │ ∗ install ocaml-options-vanilla 1
1957:  └─ 
1958:  # To update the current shell environment, run: eval $(opam env --root=/home/runner/.local/share/obazl/opam/2.3.0/root --switch=4.14.2)
1959:  Switch initialisation failed: clean up? ('n' will leave the switch partially installed) [y/n] n
1960:  stderr:[ERROR] The compilation of ocaml-base-compiler.4.14.2 failed at "./configure --prefix=/home/runner/.local/share/obazl/opam/2.3.0/root/4.14.2 --docdir=/home/runner/.local/share/obazl/opam/2.3.0/root/4.14.2/doc/ocaml -C".
1961:  #=== ERROR while compiling ocaml-base-compiler.4.14.2 =========================#
1962:  # context              2.3.0 | linux/x86_64 |  | https://opam.ocaml.org#5f4fdc0704abf51f92d9cde86eaaeb31f259ae59
1963:  # path                 ~/.local/share/obazl/opam/2.3.0/root/4.14.2/.opam-switch/build/ocaml-base-compiler.4.14.2
1964:  # command              ~/.local/share/obazl/opam/2.3.0/root/opam-init/hooks/sandbox.sh build ./configure --prefix=/home/runner/.local/share/obazl/opam/2.3.0/root/4.14.2 --docdir=/home/runner/.local/share/obazl/opam/2.3.0/root/4.14.2/doc/ocaml -C
1965:  # exit-code            1
1966:  # env-file             ~/.local/share/obazl/opam/2.3.0/root/log/ocaml-base-compiler-4610-5e7f35.env
1967:  # output-file          ~/.local/share/obazl/opam/2.3.0/root/log/ocaml-base-compiler-4610-5e7f35.out
1968:  ### output ###
1969:  # bwrap: loopback: Failed RTM_NEWADDR: Operation not permitted
1970:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
1971:  )
1972:  ^[[32m[1 / 1]^[[0m no actions running
1973:  Fetching ...l%opam; 
1974:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
1975:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
1976:  ^[[1A^[[K
1977:  ^[[1A^[[K
1978:  ^[[1A^[[K
1979:  ^[[1A^[[K
1980:  ^[[1A^[[K
1981:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/kv:kv_lib', it will not be built.
1982:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
1983:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
1984:  )
1985:  ^[[32m[1 / 1]^[[0m no actions running
1986:  Fetching ...l%opam; 
1987:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
1988:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
1989:  ^[[1A^[[K
1990:  ^[[1A^[[K
1991:  ^[[1A^[[K
1992:  ^[[1A^[[K
1993:  ^[[1A^[[K
1994:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/poller-ng:build_script', it will not be built.
1995:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
1996:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
1997:  )
1998:  ^[[32m[1 / 1]^[[0m no actions running
1999:  Fetching ...l%opam; 
2000:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2001:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2002:  ^[[1A^[[K
2003:  ^[[1A^[[K
2004:  ^[[1A^[[K
2005:  ^[[1A^[[K
2006:  ^[[1A^[[K
2007:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/metrics:metrics', it will not be built.
2008:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2009:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2010:  )
2011:  ^[[32m[1 / 1]^[[0m no actions running
2012:  Fetching ...l%opam; 
2013:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2014:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2015:  ^[[1A^[[K
2016:  ^[[1A^[[K
2017:  ^[[1A^[[K
2018:  ^[[1A^[[K
2019:  ^[[1A^[[K
2020:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//packaging/core:binary_files', it will not be built.
2021:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2022:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2023:  )
2024:  ^[[32m[1 / 1]^[[0m no actions running
2025:  Fetching ...l%opam; 
2026:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2027:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2028:  ^[[1A^[[K
2029:  ^[[1A^[[K
2030:  ^[[1A^[[K
2031:  ^[[1A^[[K
2032:  ^[[1A^[[K
2033:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/agent:agent_test', it will not be built.
2034:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2035:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2036:  )
2037:  ^[[32m[1 / 1]^[[0m no actions running
2038:  Fetching ...l%opam; 
2039:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2040:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2041:  ^[[1A^[[K
2042:  ^[[1A^[[K
2043:  ^[[1A^[[K
2044:  ^[[1A^[[K
2045:  ^[[1A^[[K
2046:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/consumers/db-event-writer:db-event-writer', it will not be built.
2047:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2048:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2049:  )
2050:  ^[[32m[1 / 1]^[[0m no actions running
2051:  Fetching ...l%opam; 
2052:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2053:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2054:  ^[[1A^[[K
2055:  ^[[1A^[[K
2056:  ^[[1A^[[K
2057:  ^[[1A^[[K
2058:  ^[[1A^[[K
2059:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/ebpf/profiler/proto/profiler:profiler', it will not be built.
2060:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2061:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2062:  )
2063:  ^[[32m[1 / 1]^[[0m no actions running
2064:  Fetching ...l%opam; 
2065:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2066:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2067:  ^[[1A^[[K
2068:  ^[[1A^[[K
2069:  ^[[1A^[[K
2070:  ^[[1A^[[K
2071:  ^[[1A^[[K
2072:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/otel/proto/opentelemetry/proto/logs/v1:v1_proto', it will not be built.
2073:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2074:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2075:  )
2076:  ^[[32m[1 / 1]^[[0m no actions running
2077:  Fetching ...l%opam; 
2078:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2079:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2080:  ^[[1A^[[K
2081:  ^[[1A^[[K
2082:  ^[[1A^[[K
2083:  ^[[1A^[[K
2084:  ^[[1A^[[K
2085:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//google/protobuf:wrappers_proto', it will not be built.
2086:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2087:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2088:  )
2089:  ^[[32m[1 / 1]^[[0m no actions running
2090:  Fetching ...l%opam; 
2091:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2092:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2093:  ^[[1A^[[K
2094:  ^[[1A^[[K
2095:  ^[[1A^[[K
2096:  ^[[1A^[[K
2097:  ^[[1A^[[K
2098:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/grpc:grpc', it will not be built.
2099:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2100:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2101:  )
2102:  ^[[32m[1 / 1]^[[0m no actions running
2103:  Fetching ...l%opam; 
2104:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2105:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2106:  ^[[1A^[[K
2107:  ^[[1A^[[K
2108:  ^[[1A^[[K
2109:  ^[[1A^[[K
2110:  ^[[1A^[[K
2111:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/cli:cli_lib', it will not be built.
2112:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2113:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2114:  )
2115:  ^[[32m[1 / 1]^[[0m no actions running
2116:  Fetching ...l%opam; 
2117:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2118:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2119:  ^[[1A^[[K
2120:  ^[[1A^[[K
2121:  ^[[1A^[[K
2122:  ^[[1A^[[K
2123:  ^[[1A^[[K
2124:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/otel/proto/opentelemetry/proto/common/v1:v1_go_proto', it will not be built.
2125:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2126:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2127:  )
2128:  ^[[32m[1 / 1]^[[0m no actions running
2129:  Fetching ...l%opam; 
2130:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2131:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2132:  ^[[1A^[[K
2133:  ^[[1A^[[K
2134:  ^[[1A^[[K
2135:  ^[[1A^[[K
2136:  ^[[1A^[[K
2137:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/cli:cli', it will not be built.
2138:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2139:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2140:  )
2141:  ^[[32m[1 / 1]^[[0m no actions running
2142:  Fetching ...l%opam; 
2143:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2144:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2145:  ^[[1A^[[K
2146:  ^[[1A^[[K
2147:  ^[[1A^[[K
2148:  ^[[1A^[[K
2149:  ^[[1A^[[K
2150:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//web:standalone_server', it will not be built.
2151:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2152:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2153:  )
2154:  ^[[32m[1 / 1]^[[0m no actions running
2155:  Fetching ...l%opam; 
2156:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2157:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2158:  ^[[1A^[[K
2159:  ^[[1A^[[K
2160:  ^[[1A^[[K
2161:  ^[[1A^[[K
2162:  ^[[1A^[[K
2163:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/checker:checker', it will not be built.
2164:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2165:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2166:  )
2167:  ^[[32m[1 / 1]^[[0m no actions running
2168:  Fetching ...l%opam; 
2169:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2170:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2171:  ^[[1A^[[K
2172:  ^[[1A^[[K
2173:  ^[[1A^[[K
2174:  ^[[1A^[[K
2175:  ^[[1A^[[K
2176:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/sync:sync', it will not be built.
2177:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2178:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2179:  )
2180:  ^[[32m[1 / 1]^[[0m no actions running
2181:  Fetching ...l%opam; 
2182:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2183:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2184:  ^[[1A^[[K
2185:  ^[[1A^[[K
2186:  ^[[1A^[[K
2187:  ^[[1A^[[K
2188:  ^[[1A^[[K
2189:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/config:config', it will not be built.
2190:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2191:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2192:  )
2193:  ^[[32m[1 / 1]^[[0m no actions running
2194:  Fetching ...l%opam; 
2195:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2196:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2197:  ^[[1A^[[K
2198:  ^[[1A^[[K
2199:  ^[[1A^[[K
2200:  ^[[1A^[[K
2201:  ^[[1A^[[K
2202:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//web:typecheck_typecheck', it will not be built.
2203:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2204:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2205:  )
2206:  ^[[32m[1 / 1]^[[0m no actions running
2207:  Fetching ...l%opam; 
2208:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2209:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2210:  ^[[1A^[[K
2211:  ^[[1A^[[K
2212:  ^[[1A^[[K
2213:  ^[[1A^[[K
2214:  ^[[1A^[[K
2215:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/otel/proto/opentelemetry/proto/common/v1:common', it will not be built.
2216:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2217:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2218:  )
2219:  ^[[32m[1 / 1]^[[0m no actions running
2220:  Fetching ...l%opam; 
2221:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2222:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2223:  ^[[1A^[[K
2224:  ^[[1A^[[K
2225:  ^[[1A^[[K
2226:  ^[[1A^[[K
2227:  ^[[1A^[[K
2228:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/version:version', it will not be built.
2229:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2230:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2231:  )
2232:  ^[[32m[1 / 1]^[[0m no actions running
2233:  Fetching ...l%opam; 
2234:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2235:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2236:  ^[[1A^[[K
2237:  ^[[1A^[[K
2238:  ^[[1A^[[K
2239:  ^[[1A^[[K
2240:  ^[[1A^[[K
2241:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/otel:otel_lib_test', it will not be built.
2242:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2243:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2244:  )
2245:  ^[[32m[1 / 1]^[[0m no actions running
2246:  Fetching ...l%opam; 
2247:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2248:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2249:  ^[[1A^[[K
2250:  ^[[1A^[[K
2251:  ^[[1A^[[K
2252:  ^[[1A^[[K
2253:  ^[[1A^[[K
2254:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/poller:poller', it will not be built.
2255:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2256:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2257:  )
2258:  ^[[32m[1 / 1]^[[0m no actions running
2259:  Fetching ...l%opam; 
2260:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2261:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2262:  ^[[1A^[[K
2263:  ^[[1A^[[K
2264:  ^[[1A^[[K
2265:  ^[[1A^[[K
2266:  ^[[1A^[[K
2267:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/core/api/web:bundle', it will not be built.
2268:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2269:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2270:  )
2271:  ^[[32m[1 / 1]^[[0m no actions running
2272:  Fetching ...l%opam; 
2273:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2274:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2275:  ^[[1A^[[K
2276:  ^[[1A^[[K
2277:  ^[[1A^[[K
2278:  ^[[1A^[[K
2279:  ^[[1A^[[K
2280:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//web:next_js_binary', it will not be built.
2281:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2282:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2283:  )
2284:  ^[[32m[1 / 1]^[[0m no actions running
2285:  Fetching ...l%opam; 
2286:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2287:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2288:  ^[[1A^[[K
2289:  ^[[1A^[[K
2290:  ^[[1A^[[K
2291:  ^[[1A^[[K
2292:  ^[[1A^[[K
2293:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/sync/integrations/armis:armis_test', it will not be built.
2294:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2295:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2296:  )
2297:  ^[[32m[1 / 1]^[[0m no actions running
2298:  Fetching ...l%opam; 
2299:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2300:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2301:  ^[[1A^[[K
2302:  ^[[1A^[[K
2303:  ^[[1A^[[K
2304:  ^[[1A^[[K
2305:  ^[[1A^[[K
2306:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/mapper:mapper', it will not be built.
2307:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2308:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2309:  )
2310:  ^[[32m[1 / 1]^[[0m no actions running
2311:  Fetching ...l%opam; 
2312:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2313:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2314:  ^[[1A^[[K
2315:  ^[[1A^[[K
2316:  ^[[1A^[[K
2317:  ^[[1A^[[K
2318:  ^[[1A^[[K
2319:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/core/api/web:files', it will not be built.
2320:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2321:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2322:  )
2323:  ^[[32m[1 / 1]^[[0m no actions running
2324:  Fetching ...l%opam; 
2325:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2326:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2327:  ^[[1A^[[K
2328:  ^[[1A^[[K
2329:  ^[[1A^[[K
2330:  ^[[1A^[[K
2331:  ^[[1A^[[K
2332:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/mapper:mapper', it will not be built.
2333:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2334:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2335:  )
2336:  ^[[32m[1 / 1]^[[0m no actions running
2337:  Fetching ...l%opam; 
2338:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2339:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2340:  ^[[1A^[[K
2341:  ^[[1A^[[K
2342:  ^[[1A^[[K
2343:  ^[[1A^[[K
2344:  ^[[1A^[[K
2345:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/checkers/snmp:snmp', it will not be built.
2346:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2347:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2348:  )
2349:  ^[[32m[1 / 1]^[[0m no actions running
2350:  Fetching ...l%opam; 
2351:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2352:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2353:  ^[[1A^[[K
2354:  ^[[1A^[[K
2355:  ^[[1A^[[K
2356:  ^[[1A^[[K
2357:  ^[[1A^[[K
2358:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/sync:sync_lib', it will not be built.
2359:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2360:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2361:  )
2362:  ^[[32m[1 / 1]^[[0m no actions running
2363:  Fetching ...l%opam; 
2364:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2365:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2366:  ^[[1A^[[K
2367:  ^[[1A^[[K
2368:  ^[[1A^[[K
2369:  ^[[1A^[[K
2370:  ^[[1A^[[K
2371:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//proto:proto', it will not be built.
2372:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2373:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2374:  )
2375:  ^[[32m[1 / 1]^[[0m no actions running
2376:  Fetching ...l%opam; 
2377:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2378:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2379:  ^[[1A^[[K
2380:  ^[[1A^[[K
2381:  ^[[1A^[[K
2382:  ^[[1A^[[K
2383:  ^[[1A^[[K
2384:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/config/kvgrpc:kvgrpc', it will not be built.
2385:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2386:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2387:  )
2388:  ^[[32m[1 / 1]^[[0m no actions running
2389:  Fetching ...l%opam; 
2390:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2391:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2392:  ^[[1A^[[K
2393:  ^[[1A^[[K
2394:  ^[[1A^[[K
2395:  ^[[1A^[[K
2396:  ^[[1A^[[K
2397:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//internal/fastsum:fastsum_test', it will not be built.
2398:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2399:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2400:  )
2401:  ^[[32m[1 / 1]^[[0m no actions running
2402:  Fetching ...l%opam; 
2403:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2404:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2405:  ^[[1A^[[K
2406:  ^[[1A^[[K
2407:  ^[[1A^[[K
2408:  ^[[1A^[[K
2409:  ^[[1A^[[K
2410:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/poller-ng/src/proto:proto_go_proto', it will not be built.
2411:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2412:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2413:  )
2414:  ^[[32m[1 / 1]^[[0m no actions running
2415:  Fetching ...l%opam; 
2416:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2417:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2418:  ^[[1A^[[K
2419:  ^[[1A^[[K
2420:  ^[[1A^[[K
2421:  ^[[1A^[[K
2422:  ^[[1A^[[K
2423:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/otel/proto/opentelemetry/proto/logs/v1:v1_go_proto', it will not be built.
2424:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2425:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2426:  )
2427:  ^[[32m[1 / 1]^[[0m no actions running
2428:  Fetching ...l%opam; 
2429:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2430:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2431:  ^[[1A^[[K
2432:  ^[[1A^[[K
2433:  ^[[1A^[[K
2434:  ^[[1A^[[K
2435:  ^[[1A^[[K
2436:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/mapper:mapper_lib', it will not be built.
2437:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2438:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2439:  )
2440:  ^[[32m[1 / 1]^[[0m no actions running
2441:  Fetching ...l%opam; 
2442:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2443:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2444:  ^[[1A^[[K
2445:  ^[[1A^[[K
2446:  ^[[1A^[[K
2447:  ^[[1A^[[K
2448:  ^[[1A^[[K
2449:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//internal/fastsum:fastsum', it will not be built.
2450:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2451:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2452:  )
2453:  ^[[32m[1 / 1]^[[0m no actions running
2454:  Fetching ...l%opam; 
2455:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2456:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2457:  ^[[1A^[[K
2458:  ^[[1A^[[K
2459:  ^[[1A^[[K
2460:  ^[[1A^[[K
2461:  ^[[1A^[[K
2462:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//proto/rperf:rperf_proto', it will not be built.
2463:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2464:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2465:  )
2466:  ^[[32m[1 / 1]^[[0m no actions running
2467:  Fetching ...l%opam; 
2468:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2469:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2470:  ^[[1A^[[K
2471:  ^[[1A^[[K
2472:  ^[[1A^[[K
2473:  ^[[1A^[[K
2474:  ^[[1A^[[K
2475:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//proto/profiler:profiler_proto', it will not be built.
2476:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2477:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2478:  )
2479:  ^[[32m[1 / 1]^[[0m no actions running
2480:  Fetching ...l%opam; 
2481:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2482:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2483:  ^[[1A^[[K
2484:  ^[[1A^[[K
2485:  ^[[1A^[[K
2486:  ^[[1A^[[K
2487:  ^[[1A^[[K
2488:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//proto/rperf:rperf', it will not be built.
2489:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2490:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2491:  )
2492:  ^[[32m[1 / 1]^[[0m no actions running
2493:  Fetching ...l%opam; 
2494:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2495:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2496:  ^[[1A^[[K
2497:  ^[[1A^[[K
2498:  ^[[1A^[[K
2499:  ^[[1A^[[K
2500:  ^[[1A^[[K
2501:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/core/auth:auth', it will not be built.
2502:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2503:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2504:  )
2505:  ^[[32m[1 / 1]^[[0m no actions running
2506:  Fetching ...l%opam; 
2507:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2508:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2509:  ^[[1A^[[K
2510:  ^[[1A^[[K
2511:  ^[[1A^[[K
2512:  ^[[1A^[[K
2513:  ^[[1A^[[K
2514:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//proto:proto_go_proto', it will not be built.
2515:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2516:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2517:  )
2518:  ^[[32m[1 / 1]^[[0m no actions running
2519:  Fetching ...l%opam; 
2520:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2521:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2522:  ^[[1A^[[K
2523:  ^[[1A^[[K
2524:  ^[[1A^[[K
2525:  ^[[1A^[[K
2526:  ^[[1A^[[K
2527:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/checkers/dusk:dusk', it will not be built.
2528:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2529:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2530:  )
2531:  ^[[32m[1 / 1]^[[0m no actions running
2532:  Fetching ...l%opam; 
2533:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2534:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2535:  ^[[1A^[[K
2536:  ^[[1A^[[K
2537:  ^[[1A^[[K
2538:  ^[[1A^[[K
2539:  ^[[1A^[[K
2540:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/integration_test:integration_test', it will not be built.
2541:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2542:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2543:  )
2544:  ^[[32m[1 / 1]^[[0m no actions running
2545:  Fetching ...l%opam; 
2546:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2547:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2548:  ^[[1A^[[K
2549:  ^[[1A^[[K
2550:  ^[[1A^[[K
2551:  ^[[1A^[[K
2552:  ^[[1A^[[K
2553:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//web:typecheck', it will not be built.
2554:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2555:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2556:  )
2557:  ^[[32m[1 / 1]^[[0m no actions running
2558:  Fetching ...l%opam; 
2559:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2560:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2561:  ^[[1A^[[K
2562:  ^[[1A^[[K
2563:  ^[[1A^[[K
2564:  ^[[1A^[[K
2565:  ^[[1A^[[K
2566:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/consumers/zen:zen_put_rule', it will not be built.
2567:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2568:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2569:  )
2570:  ^[[32m[1 / 1]^[[0m no actions running
2571:  Fetching ...l%opam; 
2572:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2573:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2574:  ^[[1A^[[K
2575:  ^[[1A^[[K
2576:  ^[[1A^[[K
2577:  ^[[1A^[[K
2578:  ^[[1A^[[K
2579:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//tools/test:coverage_report_generator', it will not be built.
2580:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2581:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2582:  )
2583:  ^[[32m[1 / 1]^[[0m no actions running
2584:  Fetching ...l%opam; 
2585:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2586:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2587:  ^[[1A^[[K
2588:  ^[[1A^[[K
2589:  ^[[1A^[[K
2590:  ^[[1A^[[K
2591:  ^[[1A^[[K
2592:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/poller-ng/src/proto:proto_go', it will not be built.
2593:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2594:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2595:  )
2596:  ^[[32m[1 / 1]^[[0m no actions running
2597:  Fetching ...l%opam; 
2598:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2599:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2600:  ^[[1A^[[K
2601:  ^[[1A^[[K
2602:  ^[[1A^[[K
2603:  ^[[1A^[[K
2604:  ^[[1A^[[K
2605:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/scan:scan_test', it will not be built.
2606:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2607:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2608:  )
2609:  ^[[32m[1 / 1]^[[0m no actions running
2610:  Fetching ...l%opam; 
2611:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2612:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2613:  ^[[1A^[[K
2614:  ^[[1A^[[K
2615:  ^[[1A^[[K
2616:  ^[[1A^[[K
2617:  ^[[1A^[[K
2618:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/otel:build_script', it will not be built.
2619:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2620:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2621:  )
2622:  ^[[32m[1 / 1]^[[0m no actions running
2623:  Fetching ...l%opam; 
2624:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2625:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2626:  ^[[1A^[[K
2627:  ^[[1A^[[K
2628:  ^[[1A^[[K
2629:  ^[[1A^[[K
2630:  ^[[1A^[[K
2631:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/core:core_test', it will not be built.
2632:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2633:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2634:  )
2635:  ^[[32m[1 / 1]^[[0m no actions running
2636:  Fetching ...l%opam; 
2637:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2638:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2639:  ^[[1A^[[K
2640:  ^[[1A^[[K
2641:  ^[[1A^[[K
2642:  ^[[1A^[[K
2643:  ^[[1A^[[K
2644:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//proto/profiler:profiler_go_proto', it will not be built.
2645:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2646:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2647:  )
2648:  ^[[32m[1 / 1]^[[0m no actions running
2649:  Fetching ...l%opam; 
2650:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2651:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2652:  ^[[1A^[[K
2653:  ^[[1A^[[K
2654:  ^[[1A^[[K
2655:  ^[[1A^[[K
2656:  ^[[1A^[[K
2657:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/consumers/zen:zen', it will not be built.
2658:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2659:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2660:  )
2661:  ^[[32m[1 / 1]^[[0m no actions running
2662:  Fetching ...l%opam; 
2663:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2664:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2665:  ^[[1A^[[K
2666:  ^[[1A^[[K
2667:  ^[[1A^[[K
2668:  ^[[1A^[[K
2669:  ^[[1A^[[K
2670:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//proto:proto_proto', it will not be built.
2671:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2672:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2673:  )
2674:  ^[[32m[1 / 1]^[[0m no actions running
2675:  Fetching ...l%opam; 
2676:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2677:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2678:  ^[[1A^[[K
2679:  ^[[1A^[[K
2680:  ^[[1A^[[K
2681:  ^[[1A^[[K
2682:  ^[[1A^[[K
2683:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//web:standalone_app', it will not be built.
2684:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2685:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2686:  )
2687:  ^[[32m[1 / 1]^[[0m no actions running
2688:  Fetching ...l%opam; 
2689:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2690:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2691:  ^[[1A^[[K
2692:  ^[[1A^[[K
2693:  ^[[1A^[[K
2694:  ^[[1A^[[K
2695:  ^[[1A^[[K
2696:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//proto/discovery:discovery_proto', it will not be built.
2697:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2698:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2699:  )
2700:  ^[[32m[1 / 1]^[[0m no actions running
2701:  Fetching ...l%opam; 
2702:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2703:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2704:  ^[[1A^[[K
2705:  ^[[1A^[[K
2706:  ^[[1A^[[K
2707:  ^[[1A^[[K
2708:  ^[[1A^[[K
2709:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/config/kv:kv', it will not be built.
2710:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2711:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2712:  )
2713:  ^[[32m[1 / 1]^[[0m no actions running
2714:  Fetching ...l%opam; 
2715:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2716:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2717:  ^[[1A^[[K
2718:  ^[[1A^[[K
2719:  ^[[1A^[[K
2720:  ^[[1A^[[K
2721:  ^[[1A^[[K
2722:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//packaging/core:core_deb', it will not be built.
2723:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2724:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2725:  )
2726:  ^[[32m[1 / 1]^[[0m no actions running
2727:  Fetching ...l%opam; 
2728:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2729:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2730:  ^[[1A^[[K
2731:  ^[[1A^[[K
2732:  ^[[1A^[[K
2733:  ^[[1A^[[K
2734:  ^[[1A^[[K
2735:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/core/alerts:alerts', it will not be built.
2736:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2737:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2738:  )
2739:  ^[[32m[1 / 1]^[[0m no actions running
2740:  Fetching ...l%opam; 
2741:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2742:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2743:  ^[[1A^[[K
2744:  ^[[1A^[[K
2745:  ^[[1A^[[K
2746:  ^[[1A^[[K
2747:  ^[[1A^[[K
2748:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/http:http_test', it will not be built.
2749:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2750:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2751:  )
2752:  ^[[32m[1 / 1]^[[0m no actions running
2753:  Fetching ...l%opam; 
2754:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2755:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2756:  ^[[1A^[[K
2757:  ^[[1A^[[K
2758:  ^[[1A^[[K
2759:  ^[[1A^[[K
2760:  ^[[1A^[[K
2761:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/otel/proto/opentelemetry/proto/collector/trace/v1:trace', it will not be built.
2762:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2763:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2764:  )
2765:  ^[[32m[1 / 1]^[[0m no actions running
2766:  Fetching ...l%opam; 
2767:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2768:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2769:  ^[[1A^[[K
2770:  ^[[1A^[[K
2771:  ^[[1A^[[K
2772:  ^[[1A^[[K
2773:  ^[[1A^[[K
2774:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/checkers/snmp:snmp_lib', it will not be built.
2775:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2776:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2777:  )
2778:  ^[[32m[1 / 1]^[[0m no actions running
2779:  Fetching ...l%opam; 
2780:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2781:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2782:  ^[[1A^[[K
2783:  ^[[1A^[[K
2784:  ^[[1A^[[K
2785:  ^[[1A^[[K
2786:  ^[[1A^[[K
2787:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//tools/test:lcov_merger', it will not be built.
2788:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2789:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2790:  )
2791:  ^[[32m[1 / 1]^[[0m no actions running
2792:  Fetching ...l%opam; 
2793:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2794:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2795:  ^[[1A^[[K
2796:  ^[[1A^[[K
2797:  ^[[1A^[[K
2798:  ^[[1A^[[K
2799:  ^[[1A^[[K
2800:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/ebpf/profiler/proto/profiler:profiler_go_proto', it will not be built.
2801:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2802:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2803:  )
2804:  ^[[32m[1 / 1]^[[0m no actions running
2805:  Fetching ...l%opam; 
2806:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2807:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2808:  ^[[1A^[[K
2809:  ^[[1A^[[K
2810:  ^[[1A^[[K
2811:  ^[[1A^[[K
2812:  ^[[1A^[[K
2813:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/poller:poller_test', it will not be built.
2814:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2815:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2816:  )
2817:  ^[[32m[1 / 1]^[[0m no actions running
2818:  Fetching ...l%opam; 
2819:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2820:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2821:  ^[[1A^[[K
2822:  ^[[1A^[[K
2823:  ^[[1A^[[K
2824:  ^[[1A^[[K
2825:  ^[[1A^[[K
2826:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//third_party/perl:perl_tool', it will not be built.
2827:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2828:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2829:  )
2830:  ^[[32m[1 / 1]^[[0m no actions running
2831:  Fetching ...l%opam; 
2832:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2833:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2834:  ^[[1A^[[K
2835:  ^[[1A^[[K
2836:  ^[[1A^[[K
2837:  ^[[1A^[[K
2838:  ^[[1A^[[K
2839:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/metrics:metrics_test', it will not be built.
2840:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2841:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2842:  )
2843:  ^[[32m[1 / 1]^[[0m no actions running
2844:  Fetching ...l%opam; 
2845:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2846:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2847:  ^[[1A^[[K
2848:  ^[[1A^[[K
2849:  ^[[1A^[[K
2850:  ^[[1A^[[K
2851:  ^[[1A^[[K
2852:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/otel/proto/opentelemetry/proto/trace/v1:v1_proto', it will not be built.
2853:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2854:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2855:  )
2856:  ^[[32m[1 / 1]^[[0m no actions running
2857:  Fetching ...l%opam; 
2858:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2859:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2860:  ^[[1A^[[K
2861:  ^[[1A^[[K
2862:  ^[[1A^[[K
2863:  ^[[1A^[[K
2864:  ^[[1A^[[K
2865:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/poller-ng:poller_ng', it will not be built.
2866:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2867:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2868:  )
2869:  ^[[32m[1 / 1]^[[0m no actions running
2870:  Fetching ...l%opam; 
2871:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2872:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2873:  ^[[1A^[[K
2874:  ^[[1A^[[K
2875:  ^[[1A^[[K
2876:  ^[[1A^[[K
2877:  ^[[1A^[[K
2878:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/cli:cli', it will not be built.
2879:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2880:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2881:  )
2882:  ^[[32m[1 / 1]^[[0m no actions running
2883:  Fetching ...l%opam; 
2884:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2885:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2886:  ^[[1A^[[K
2887:  ^[[1A^[[K
2888:  ^[[1A^[[K
2889:  ^[[1A^[[K
2890:  ^[[1A^[[K
2891:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/sweeper:sweeper_test', it will not be built.
2892:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2893:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2894:  )
2895:  ^[[32m[1 / 1]^[[0m no actions running
2896:  Fetching ...l%opam; 
2897:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2898:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2899:  ^[[1A^[[K
2900:  ^[[1A^[[K
2901:  ^[[1A^[[K
2902:  ^[[1A^[[K
2903:  ^[[1A^[[K
2904:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/consumers/zen:zen_lib', it will not be built.
2905:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2906:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2907:  )
2908:  ^[[32m[1 / 1]^[[0m no actions running
2909:  Fetching ...l%opam; 
2910:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2911:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2912:  ^[[1A^[[K
2913:  ^[[1A^[[K
2914:  ^[[1A^[[K
2915:  ^[[1A^[[K
2916:  ^[[1A^[[K
2917:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/otel/proto/opentelemetry/proto/collector/trace/v1:v1_go_proto', it will not be built.
2918:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2919:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2920:  )
2921:  ^[[32m[1 / 1]^[[0m no actions running
2922:  Fetching ...l%opam; 
2923:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2924:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2925:  ^[[1A^[[K
2926:  ^[[1A^[[K
2927:  ^[[1A^[[K
2928:  ^[[1A^[[K
2929:  ^[[1A^[[K
2930:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/sync:sync', it will not be built.
2931:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2932:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2933:  )
2934:  ^[[32m[1 / 1]^[[0m no actions running
2935:  Fetching ...l%opam; 
2936:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2937:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2938:  ^[[1A^[[K
2939:  ^[[1A^[[K
2940:  ^[[1A^[[K
2941:  ^[[1A^[[K
2942:  ^[[1A^[[K
2943:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/otel/proto/opentelemetry/proto/resource/v1:v1_go_proto', it will not be built.
2944:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2945:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2946:  )
2947:  ^[[32m[1 / 1]^[[0m no actions running
2948:  Fetching ...l%opam; 
2949:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2950:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2951:  ^[[1A^[[K
2952:  ^[[1A^[[K
2953:  ^[[1A^[[K
2954:  ^[[1A^[[K
2955:  ^[[1A^[[K
2956:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/otel:otel_lib', it will not be built.
2957:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2958:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2959:  )
2960:  ^[[32m[1 / 1]^[[0m no actions running
2961:  Fetching ...l%opam; 
2962:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2963:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2964:  ^[[1A^[[K
2965:  ^[[1A^[[K
2966:  ^[[1A^[[K
2967:  ^[[1A^[[K
2968:  ^[[1A^[[K
2969:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/mcp:mcp', it will not be built.
2970:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2971:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2972:  )
2973:  ^[[32m[1 / 1]^[[0m no actions running
2974:  Fetching ...l%opam; 
2975:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2976:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2977:  ^[[1A^[[K
2978:  ^[[1A^[[K
2979:  ^[[1A^[[K
2980:  ^[[1A^[[K
2981:  ^[[1A^[[K
2982:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/consumers/db-event-writer:db-event-writer_test', it will not be built.
2983:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2984:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2985:  )
2986:  ^[[32m[1 / 1]^[[0m no actions running
2987:  Fetching ...l%opam; 
2988:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
2989:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
2990:  ^[[1A^[[K
2991:  ^[[1A^[[K
2992:  ^[[1A^[[K
2993:  ^[[1A^[[K
2994:  ^[[1A^[[K
2995:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/trapd:build_script', it will not be built.
2996:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
2997:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
2998:  )
2999:  ^[[32m[1 / 1]^[[0m no actions running
3000:  Fetching ...l%opam; 
3001:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
3002:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
3003:  ^[[1A^[[K
3004:  ^[[1A^[[K
3005:  ^[[1A^[[K
3006:  ^[[1A^[[K
3007:  ^[[1A^[[K
3008:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/registry:registry', it will not be built.
3009:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
3010:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
3011:  )
3012:  ^[[32m[1 / 1]^[[0m no actions running
3013:  Fetching ...l%opam; 
3014:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
3015:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
3016:  ^[[1A^[[K
3017:  ^[[1A^[[K
3018:  ^[[1A^[[K
3019:  ^[[1A^[[K
3020:  ^[[1A^[[K
3021:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/poller-ng/src/proto:proto_proto', it will not be built.
3022:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
3023:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
3024:  )
3025:  ^[[32m[1 / 1]^[[0m no actions running
3026:  Fetching ...l%opam; 
3027:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
3028:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
3029:  ^[[1A^[[K
3030:  ^[[1A^[[K
3031:  ^[[1A^[[K
3032:  ^[[1A^[[K
3033:  ^[[1A^[[K
3034:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/checker/snmp:snmp', it will not be built.
3035:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
3036:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
3037:  )
3038:  ^[[32m[1 / 1]^[[0m no actions running
3039:  Fetching ...l%opam; 
3040:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
3041:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
3042:  ^[[1A^[[K
3043:  ^[[1A^[[K
3044:  ^[[1A^[[K
3045:  ^[[1A^[[K
3046:  ^[[1A^[[K
3047:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/grpc:grpc_test', it will not be built.
3048:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
3049:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
3050:  )
3051:  ^[[32m[1 / 1]^[[0m no actions running
3052:  Fetching ...l%opam; 
3053:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
3054:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
3055:  ^[[1A^[[K
3056:  ^[[1A^[[K
3057:  ^[[1A^[[K
3058:  ^[[1A^[[K
3059:  ^[[1A^[[K
3060:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/checkers/dusk:dusk_lib', it will not be built.
3061:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
3062:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
3063:  )
3064:  ^[[32m[1 / 1]^[[0m no actions running
3065:  Fetching ...l%opam; 
3066:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
3067:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
3068:  ^[[1A^[[K
3069:  ^[[1A^[[K
3070:  ^[[1A^[[K
3071:  ^[[1A^[[K
3072:  ^[[1A^[[K
3073:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/integration_test:integration_test_test', it will not be built.
3074:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
3075:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
3076:  )
3077:  ^[[32m[1 / 1]^[[0m no actions running
3078:  Fetching ...l%opam; 
3079:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
3080:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
3081:  ^[[1A^[[K
3082:  ^[[1A^[[K
3083:  ^[[1A^[[K
3084:  ^[[1A^[[K
3085:  ^[[1A^[[K
3086:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//proto/profiler:profiler', it will not be built.
3087:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
3088:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\
3089:  )
3090:  ^[[32m[1 / 1]^[[0m no actions running
3091:  Fetching ...l%opam; 
3092:  ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2
3093:  in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s
3094:  ^[[1A^[[K
3095:  ^[[1A^[[K
3096:  ^[[1A^[[K
3097:  ^[[1A^[[K
3098:  ^[[1A^[[K
3099:  ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/agent:agent', it will not be built.
3100:  error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam
3101:  (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configu...
Imported GitHub PR comment. Original author: @qodo-code-review[bot] Original URL: https://github.com/carverauto/serviceradar/pull/1660#issuecomment-3331150633 Original created: 2025-09-25T00:21:25Z --- ## CI Feedback 🧐 A test triggered by this PR failed. Here is an AI-generated analysis of the failure: <table><tr><td> **Action:** build</td></tr> <tr><td> **Failed stage:** [Test](https://github.com/carverauto/serviceradar/actions/runs/17993072857/job/51187074680) [❌] </td></tr> <tr><td> **Failure summary:** Bazel failed during analysis because the opam toolchain setup (OCaml 4.14.2 switch) could not be <br>created inside the CI sandbox. The critical error is:<br> - In <br><code>/home/runner/.bazel/external/tools_opam+/extensions/opam/opam_toolchain_xdg.bzl:242:17</code>, the <br>extension called <code>fail()</code> with: "opam switch create failed".<br> - The underlying opam failure shows <br><code>bwrap: loopback: Failed RTM_NEWADDR: Operation not permitted</code> while compiling <br><code>ocaml-base-compiler.4.14.2</code>, indicating bubblewrap/network namespace operation is not permitted in <br>the GitHub runner environment.<br> - Due to the failed module extension <br><code>@@tools_opam+//extensions:opam.bzl%opam</code>, many targets could not be analyzed, leading to "command <br>succeeded, but not all targets were analyzed" and ultimately "No test targets were found, yet <br>testing was requested".<br> - Key log lines:<br> - <br><code>/home/runner/.bazel/external/tools_opam+/extensions/opam/opam_toolchain_xdg.bzl:242:17</code><br> - Error in <br>fail: opam switch create failed; rc=31; output shows <code>bwrap: loopback: Failed RTM_NEWADDR: Operation </code><br><code>not permitted</code>.<br> </td></tr> <tr><td> <details><summary>Relevant error logs:</summary> ```yaml 1: ##[group]Runner Image Provisioner 2: Hosted Compute Agent ... 302: (00:19:55) ^[[35mWARNING: ^[[0mThe following configs were expanded more than once: [remote]. For repeatable flags, repeats are counted twice and may lead to unexpected behavior. 303: (00:19:55) ^[[35mWARNING: ^[[0moption '--remote_timeout' was expanded to from both option '--config=ci' (source command line options) and option '--config=ci' (source command line options) 304: (00:19:55) ^[[32mINFO: ^[[0mInvocation ID: 48eddd8c-e528-4b54-b31b-075b508e8bb4 305: (00:19:55) ^[[32mINFO: ^[[0mStreaming build results to: ^[[36mhttps://app.buildbuddy.io/invocation/48eddd8c-e528-4b54-b31b-075b508e8bb4^[[0m 306: (00:19:55) ^[[32mINFO: ^[[0mReading 'startup' options from /home/runner/work/serviceradar/serviceradar/.bazelrc: --max_idle_secs=60 307: (00:19:55) ^[[32mINFO: ^[[0mReading 'startup' options from /home/runner/.bazelrc: --output_base=/home/runner/.bazel 308: (00:19:55) ^[[32mINFO: ^[[0mOptions provided by the client: 309: Inherited 'common' options: --isatty=0 --terminal_columns=80 310: (00:19:55) ^[[32mINFO: ^[[0mReading rc options for 'test' from /home/runner/work/serviceradar/serviceradar/.bazelrc: 311: Inherited 'common' options: --announce_rc --experimental_convenience_symlinks=clean --color=yes --curses=yes 312: (00:19:55) ^[[32mINFO: ^[[0mReading rc options for 'test' from /home/runner/work/serviceradar/serviceradar/.bazelrc.remote: 313: Inherited 'common' options: --remote_header=x-buildbuddy-api-key=*** 314: (00:19:55) ^[[32mINFO: ^[[0mReading rc options for 'test' from /home/runner/work/serviceradar/serviceradar/.bazelrc: 315: Inherited 'build' options: --keep_going --jobs=auto --show_timestamps --action_env=OPENSSL_NO_PKG_CONFIG=1 --java_runtime_version=local_jdk --tool_java_runtime_version=local_jdk --build_metadata=REPO_URL=git@github.com:carverauto/serviceradar.git 316: (00:19:55) ^[[32mINFO: ^[[0mReading rc options for 'test' from /home/runner/work/serviceradar/serviceradar/.bazelrc: 317: 'test' options: --test_output=errors --action_env=OPENSSL_NO_PKG_CONFIG=1 --flaky_test_attempts=2 318: (00:19:55) ^[[32mINFO: ^[[0mFound applicable config definition build:ci in file /home/runner/work/serviceradar/serviceradar/.bazelrc: --keep_going --build_tag_filters=-manual --config=remote --build_metadata=ROLE=CI --bes_results_url=https://app.buildbuddy.io/invocation/ --bes_backend=grpcs://remote.buildbuddy.io --remote_timeout=15m 319: (00:19:55) ^[[32mINFO: ^[[0mFound applicable config definition build:remote in file /home/runner/work/serviceradar/serviceradar/.bazelrc: --remote_executor=grpcs://remote.buildbuddy.io --host_platform=//:rbe_linux_amd64 --platforms=//:rbe_linux_amd64 --extra_execution_platforms=//:rbe_linux_amd64,//:rbe_linux_arm64 --crosstool_top=@buildbuddy_toolchain//:toolchain --extra_toolchains=@buildbuddy_toolchain//:cc_toolchain --repo_env=BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 --copt=-Wno-use-after-free --java_language_version=11 --tool_java_language_version=11 --java_runtime_version=remotejdk_11 --tool_java_runtime_version=remotejdk_11 --define=EXECUTOR=remote --incompatible_strict_action_env --remote_timeout=10m --strategy=CompileOCamlModule=local --strategy=CompileOCamlLibrary=local --strategy=CompileOCamlArchive=local --strategy=OcamlPack=local --strategy=OcamlLink=local 320: (00:19:55) ^[[32mINFO: ^[[0mFound applicable config definition test:remote in file /home/runner/work/serviceradar/serviceradar/.bazelrc: --copt=-Wno-use-after-free 321: (00:19:55) ^[[32mINFO: ^[[0mFound applicable config definition test:ci in file /home/runner/work/serviceradar/serviceradar/.bazelrc: --config=remote --test_tag_filters=-manual --test_output=errors 322: (00:19:55) ^[[32mINFO: ^[[0mFound applicable config definition build:remote in file /home/runner/work/serviceradar/serviceradar/.bazelrc: --remote_executor=grpcs://remote.buildbuddy.io --host_platform=//:rbe_linux_amd64 --platforms=//:rbe_linux_amd64 --extra_execution_platforms=//:rbe_linux_amd64,//:rbe_linux_arm64 --crosstool_top=@buildbuddy_toolchain//:toolchain --extra_toolchains=@buildbuddy_toolchain//:cc_toolchain --repo_env=BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 --copt=-Wno-use-after-free --java_language_version=11 --tool_java_language_version=11 --java_runtime_version=remotejdk_11 --tool_java_runtime_version=remotejdk_11 --define=EXECUTOR=remote --incompatible_strict_action_env --remote_timeout=10m --strategy=CompileOCamlModule=local --strategy=CompileOCamlLibrary=local --strategy=CompileOCamlArchive=local --strategy=OcamlPack=local --strategy=OcamlLink=local ... 1914: ^[[1A^[[K 1915: ^[[1A^[[K 1916: ^[[1A^[[K 1917: ^[[1A^[[K 1918: ^[[1A^[[K(00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 1919: ) 1920: ^[[32m[1 / 1]^[[0m no actions running 1921: Fetching ...l%opam; 1922: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 1923: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 1924: ^[[1A^[[K 1925: ^[[1A^[[K 1926: ^[[1A^[[K 1927: ^[[1A^[[K 1928: ^[[1A^[[K 1929: ^[[1A^[[K(00:20:49) ^[[31m^[[1mERROR: ^[[0m/home/runner/.bazel/external/tools_opam+/extensions/opam/opam_toolchain_xdg.bzl:242:17: Traceback (most recent call last): 1930: File "/home/runner/.bazel/external/tools_opam+/extensions/opam.bzl", line 422, column 53, in _opam_ext_impl 1931: ocaml_version, deps) = config_xdg_toolchain( 1932: File "/home/runner/.bazel/external/tools_opam+/extensions/opam/opam_toolchain_xdg.bzl", line 308, column 45, in config_xdg_toolchain 1933: ocaml_version) = _create_switch(mctx, opambin, 1934: File "/home/runner/.bazel/external/tools_opam+/extensions/opam/opam_toolchain_xdg.bzl", line 242, column 17, in _create_switch 1935: fail("opam switch create failed; cmd=%s rc=%s\nstdout:%s\nstderr:%s" % ( 1936: Error in fail: opam switch create failed; cmd=["/home/runner/.local/share/obazl/opam/2.3.0/bin/opam", "switch", "create", "4.14.2", "4.14.2", "--root=/home/runner/.local/share/obazl/opam/2.3.0/root"] rc=31 1937: stdout: 1938: <><> Installing new switch packages <><><><><><><><><><><><><><><><><><><><><><> 1939: Switch invariant: ["ocaml-base-compiler" {= "4.14.2"} | "ocaml-system" {= "4.14.2"}] 1940: <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> 1941: ∗ installed base-bigarray.base 1942: ∗ installed base-threads.base 1943: ∗ installed base-unix.base 1944: ∗ installed ocaml-options-vanilla.1 1945: ⬇ retrieved ocaml-config.2 (2 extra sources) 1946: ⬇ retrieved ocaml-config.2 (2 extra sources) 1947: ⬇ retrieved ocaml-base-compiler.4.14.2 (https://opam.ocaml.org/cache) 1948: <><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><> 1949: ┌─ The following actions failed 1950: │ λ build ocaml-base-compiler 4.14.2 1951: └─ 1952: ┌─ The following changes have been performed (the rest was aborted) 1953: │ ∗ install base-bigarray base 1954: │ ∗ install base-threads base 1955: │ ∗ install base-unix base 1956: │ ∗ install ocaml-options-vanilla 1 1957: └─ 1958: # To update the current shell environment, run: eval $(opam env --root=/home/runner/.local/share/obazl/opam/2.3.0/root --switch=4.14.2) 1959: Switch initialisation failed: clean up? ('n' will leave the switch partially installed) [y/n] n 1960: stderr:[ERROR] The compilation of ocaml-base-compiler.4.14.2 failed at "./configure --prefix=/home/runner/.local/share/obazl/opam/2.3.0/root/4.14.2 --docdir=/home/runner/.local/share/obazl/opam/2.3.0/root/4.14.2/doc/ocaml -C". 1961: #=== ERROR while compiling ocaml-base-compiler.4.14.2 =========================# 1962: # context 2.3.0 | linux/x86_64 | | https://opam.ocaml.org#5f4fdc0704abf51f92d9cde86eaaeb31f259ae59 1963: # path ~/.local/share/obazl/opam/2.3.0/root/4.14.2/.opam-switch/build/ocaml-base-compiler.4.14.2 1964: # command ~/.local/share/obazl/opam/2.3.0/root/opam-init/hooks/sandbox.sh build ./configure --prefix=/home/runner/.local/share/obazl/opam/2.3.0/root/4.14.2 --docdir=/home/runner/.local/share/obazl/opam/2.3.0/root/4.14.2/doc/ocaml -C 1965: # exit-code 1 1966: # env-file ~/.local/share/obazl/opam/2.3.0/root/log/ocaml-base-compiler-4610-5e7f35.env 1967: # output-file ~/.local/share/obazl/opam/2.3.0/root/log/ocaml-base-compiler-4610-5e7f35.out 1968: ### output ### 1969: # bwrap: loopback: Failed RTM_NEWADDR: Operation not permitted 1970: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 1971: ) 1972: ^[[32m[1 / 1]^[[0m no actions running 1973: Fetching ...l%opam; 1974: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 1975: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 1976: ^[[1A^[[K 1977: ^[[1A^[[K 1978: ^[[1A^[[K 1979: ^[[1A^[[K 1980: ^[[1A^[[K 1981: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/kv:kv_lib', it will not be built. 1982: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 1983: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 1984: ) 1985: ^[[32m[1 / 1]^[[0m no actions running 1986: Fetching ...l%opam; 1987: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 1988: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 1989: ^[[1A^[[K 1990: ^[[1A^[[K 1991: ^[[1A^[[K 1992: ^[[1A^[[K 1993: ^[[1A^[[K 1994: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/poller-ng:build_script', it will not be built. 1995: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 1996: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 1997: ) 1998: ^[[32m[1 / 1]^[[0m no actions running 1999: Fetching ...l%opam; 2000: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2001: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2002: ^[[1A^[[K 2003: ^[[1A^[[K 2004: ^[[1A^[[K 2005: ^[[1A^[[K 2006: ^[[1A^[[K 2007: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/metrics:metrics', it will not be built. 2008: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2009: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2010: ) 2011: ^[[32m[1 / 1]^[[0m no actions running 2012: Fetching ...l%opam; 2013: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2014: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2015: ^[[1A^[[K 2016: ^[[1A^[[K 2017: ^[[1A^[[K 2018: ^[[1A^[[K 2019: ^[[1A^[[K 2020: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//packaging/core:binary_files', it will not be built. 2021: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2022: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2023: ) 2024: ^[[32m[1 / 1]^[[0m no actions running 2025: Fetching ...l%opam; 2026: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2027: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2028: ^[[1A^[[K 2029: ^[[1A^[[K 2030: ^[[1A^[[K 2031: ^[[1A^[[K 2032: ^[[1A^[[K 2033: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/agent:agent_test', it will not be built. 2034: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2035: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2036: ) 2037: ^[[32m[1 / 1]^[[0m no actions running 2038: Fetching ...l%opam; 2039: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2040: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2041: ^[[1A^[[K 2042: ^[[1A^[[K 2043: ^[[1A^[[K 2044: ^[[1A^[[K 2045: ^[[1A^[[K 2046: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/consumers/db-event-writer:db-event-writer', it will not be built. 2047: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2048: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2049: ) 2050: ^[[32m[1 / 1]^[[0m no actions running 2051: Fetching ...l%opam; 2052: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2053: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2054: ^[[1A^[[K 2055: ^[[1A^[[K 2056: ^[[1A^[[K 2057: ^[[1A^[[K 2058: ^[[1A^[[K 2059: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/ebpf/profiler/proto/profiler:profiler', it will not be built. 2060: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2061: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2062: ) 2063: ^[[32m[1 / 1]^[[0m no actions running 2064: Fetching ...l%opam; 2065: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2066: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2067: ^[[1A^[[K 2068: ^[[1A^[[K 2069: ^[[1A^[[K 2070: ^[[1A^[[K 2071: ^[[1A^[[K 2072: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/otel/proto/opentelemetry/proto/logs/v1:v1_proto', it will not be built. 2073: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2074: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2075: ) 2076: ^[[32m[1 / 1]^[[0m no actions running 2077: Fetching ...l%opam; 2078: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2079: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2080: ^[[1A^[[K 2081: ^[[1A^[[K 2082: ^[[1A^[[K 2083: ^[[1A^[[K 2084: ^[[1A^[[K 2085: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//google/protobuf:wrappers_proto', it will not be built. 2086: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2087: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2088: ) 2089: ^[[32m[1 / 1]^[[0m no actions running 2090: Fetching ...l%opam; 2091: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2092: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2093: ^[[1A^[[K 2094: ^[[1A^[[K 2095: ^[[1A^[[K 2096: ^[[1A^[[K 2097: ^[[1A^[[K 2098: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/grpc:grpc', it will not be built. 2099: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2100: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2101: ) 2102: ^[[32m[1 / 1]^[[0m no actions running 2103: Fetching ...l%opam; 2104: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2105: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2106: ^[[1A^[[K 2107: ^[[1A^[[K 2108: ^[[1A^[[K 2109: ^[[1A^[[K 2110: ^[[1A^[[K 2111: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/cli:cli_lib', it will not be built. 2112: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2113: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2114: ) 2115: ^[[32m[1 / 1]^[[0m no actions running 2116: Fetching ...l%opam; 2117: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2118: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2119: ^[[1A^[[K 2120: ^[[1A^[[K 2121: ^[[1A^[[K 2122: ^[[1A^[[K 2123: ^[[1A^[[K 2124: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/otel/proto/opentelemetry/proto/common/v1:v1_go_proto', it will not be built. 2125: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2126: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2127: ) 2128: ^[[32m[1 / 1]^[[0m no actions running 2129: Fetching ...l%opam; 2130: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2131: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2132: ^[[1A^[[K 2133: ^[[1A^[[K 2134: ^[[1A^[[K 2135: ^[[1A^[[K 2136: ^[[1A^[[K 2137: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/cli:cli', it will not be built. 2138: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2139: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2140: ) 2141: ^[[32m[1 / 1]^[[0m no actions running 2142: Fetching ...l%opam; 2143: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2144: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2145: ^[[1A^[[K 2146: ^[[1A^[[K 2147: ^[[1A^[[K 2148: ^[[1A^[[K 2149: ^[[1A^[[K 2150: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//web:standalone_server', it will not be built. 2151: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2152: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2153: ) 2154: ^[[32m[1 / 1]^[[0m no actions running 2155: Fetching ...l%opam; 2156: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2157: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2158: ^[[1A^[[K 2159: ^[[1A^[[K 2160: ^[[1A^[[K 2161: ^[[1A^[[K 2162: ^[[1A^[[K 2163: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/checker:checker', it will not be built. 2164: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2165: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2166: ) 2167: ^[[32m[1 / 1]^[[0m no actions running 2168: Fetching ...l%opam; 2169: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2170: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2171: ^[[1A^[[K 2172: ^[[1A^[[K 2173: ^[[1A^[[K 2174: ^[[1A^[[K 2175: ^[[1A^[[K 2176: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/sync:sync', it will not be built. 2177: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2178: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2179: ) 2180: ^[[32m[1 / 1]^[[0m no actions running 2181: Fetching ...l%opam; 2182: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2183: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2184: ^[[1A^[[K 2185: ^[[1A^[[K 2186: ^[[1A^[[K 2187: ^[[1A^[[K 2188: ^[[1A^[[K 2189: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/config:config', it will not be built. 2190: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2191: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2192: ) 2193: ^[[32m[1 / 1]^[[0m no actions running 2194: Fetching ...l%opam; 2195: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2196: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2197: ^[[1A^[[K 2198: ^[[1A^[[K 2199: ^[[1A^[[K 2200: ^[[1A^[[K 2201: ^[[1A^[[K 2202: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//web:typecheck_typecheck', it will not be built. 2203: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2204: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2205: ) 2206: ^[[32m[1 / 1]^[[0m no actions running 2207: Fetching ...l%opam; 2208: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2209: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2210: ^[[1A^[[K 2211: ^[[1A^[[K 2212: ^[[1A^[[K 2213: ^[[1A^[[K 2214: ^[[1A^[[K 2215: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/otel/proto/opentelemetry/proto/common/v1:common', it will not be built. 2216: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2217: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2218: ) 2219: ^[[32m[1 / 1]^[[0m no actions running 2220: Fetching ...l%opam; 2221: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2222: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2223: ^[[1A^[[K 2224: ^[[1A^[[K 2225: ^[[1A^[[K 2226: ^[[1A^[[K 2227: ^[[1A^[[K 2228: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/version:version', it will not be built. 2229: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2230: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2231: ) 2232: ^[[32m[1 / 1]^[[0m no actions running 2233: Fetching ...l%opam; 2234: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2235: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2236: ^[[1A^[[K 2237: ^[[1A^[[K 2238: ^[[1A^[[K 2239: ^[[1A^[[K 2240: ^[[1A^[[K 2241: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/otel:otel_lib_test', it will not be built. 2242: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2243: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2244: ) 2245: ^[[32m[1 / 1]^[[0m no actions running 2246: Fetching ...l%opam; 2247: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2248: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2249: ^[[1A^[[K 2250: ^[[1A^[[K 2251: ^[[1A^[[K 2252: ^[[1A^[[K 2253: ^[[1A^[[K 2254: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/poller:poller', it will not be built. 2255: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2256: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2257: ) 2258: ^[[32m[1 / 1]^[[0m no actions running 2259: Fetching ...l%opam; 2260: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2261: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2262: ^[[1A^[[K 2263: ^[[1A^[[K 2264: ^[[1A^[[K 2265: ^[[1A^[[K 2266: ^[[1A^[[K 2267: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/core/api/web:bundle', it will not be built. 2268: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2269: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2270: ) 2271: ^[[32m[1 / 1]^[[0m no actions running 2272: Fetching ...l%opam; 2273: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2274: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2275: ^[[1A^[[K 2276: ^[[1A^[[K 2277: ^[[1A^[[K 2278: ^[[1A^[[K 2279: ^[[1A^[[K 2280: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//web:next_js_binary', it will not be built. 2281: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2282: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2283: ) 2284: ^[[32m[1 / 1]^[[0m no actions running 2285: Fetching ...l%opam; 2286: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2287: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2288: ^[[1A^[[K 2289: ^[[1A^[[K 2290: ^[[1A^[[K 2291: ^[[1A^[[K 2292: ^[[1A^[[K 2293: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/sync/integrations/armis:armis_test', it will not be built. 2294: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2295: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2296: ) 2297: ^[[32m[1 / 1]^[[0m no actions running 2298: Fetching ...l%opam; 2299: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2300: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2301: ^[[1A^[[K 2302: ^[[1A^[[K 2303: ^[[1A^[[K 2304: ^[[1A^[[K 2305: ^[[1A^[[K 2306: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/mapper:mapper', it will not be built. 2307: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2308: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2309: ) 2310: ^[[32m[1 / 1]^[[0m no actions running 2311: Fetching ...l%opam; 2312: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2313: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2314: ^[[1A^[[K 2315: ^[[1A^[[K 2316: ^[[1A^[[K 2317: ^[[1A^[[K 2318: ^[[1A^[[K 2319: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/core/api/web:files', it will not be built. 2320: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2321: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2322: ) 2323: ^[[32m[1 / 1]^[[0m no actions running 2324: Fetching ...l%opam; 2325: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2326: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2327: ^[[1A^[[K 2328: ^[[1A^[[K 2329: ^[[1A^[[K 2330: ^[[1A^[[K 2331: ^[[1A^[[K 2332: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/mapper:mapper', it will not be built. 2333: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2334: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2335: ) 2336: ^[[32m[1 / 1]^[[0m no actions running 2337: Fetching ...l%opam; 2338: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2339: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2340: ^[[1A^[[K 2341: ^[[1A^[[K 2342: ^[[1A^[[K 2343: ^[[1A^[[K 2344: ^[[1A^[[K 2345: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/checkers/snmp:snmp', it will not be built. 2346: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2347: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2348: ) 2349: ^[[32m[1 / 1]^[[0m no actions running 2350: Fetching ...l%opam; 2351: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2352: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2353: ^[[1A^[[K 2354: ^[[1A^[[K 2355: ^[[1A^[[K 2356: ^[[1A^[[K 2357: ^[[1A^[[K 2358: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/sync:sync_lib', it will not be built. 2359: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2360: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2361: ) 2362: ^[[32m[1 / 1]^[[0m no actions running 2363: Fetching ...l%opam; 2364: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2365: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2366: ^[[1A^[[K 2367: ^[[1A^[[K 2368: ^[[1A^[[K 2369: ^[[1A^[[K 2370: ^[[1A^[[K 2371: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//proto:proto', it will not be built. 2372: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2373: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2374: ) 2375: ^[[32m[1 / 1]^[[0m no actions running 2376: Fetching ...l%opam; 2377: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2378: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2379: ^[[1A^[[K 2380: ^[[1A^[[K 2381: ^[[1A^[[K 2382: ^[[1A^[[K 2383: ^[[1A^[[K 2384: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/config/kvgrpc:kvgrpc', it will not be built. 2385: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2386: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2387: ) 2388: ^[[32m[1 / 1]^[[0m no actions running 2389: Fetching ...l%opam; 2390: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2391: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2392: ^[[1A^[[K 2393: ^[[1A^[[K 2394: ^[[1A^[[K 2395: ^[[1A^[[K 2396: ^[[1A^[[K 2397: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//internal/fastsum:fastsum_test', it will not be built. 2398: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2399: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2400: ) 2401: ^[[32m[1 / 1]^[[0m no actions running 2402: Fetching ...l%opam; 2403: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2404: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2405: ^[[1A^[[K 2406: ^[[1A^[[K 2407: ^[[1A^[[K 2408: ^[[1A^[[K 2409: ^[[1A^[[K 2410: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/poller-ng/src/proto:proto_go_proto', it will not be built. 2411: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2412: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2413: ) 2414: ^[[32m[1 / 1]^[[0m no actions running 2415: Fetching ...l%opam; 2416: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2417: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2418: ^[[1A^[[K 2419: ^[[1A^[[K 2420: ^[[1A^[[K 2421: ^[[1A^[[K 2422: ^[[1A^[[K 2423: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/otel/proto/opentelemetry/proto/logs/v1:v1_go_proto', it will not be built. 2424: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2425: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2426: ) 2427: ^[[32m[1 / 1]^[[0m no actions running 2428: Fetching ...l%opam; 2429: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2430: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2431: ^[[1A^[[K 2432: ^[[1A^[[K 2433: ^[[1A^[[K 2434: ^[[1A^[[K 2435: ^[[1A^[[K 2436: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/mapper:mapper_lib', it will not be built. 2437: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2438: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2439: ) 2440: ^[[32m[1 / 1]^[[0m no actions running 2441: Fetching ...l%opam; 2442: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2443: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2444: ^[[1A^[[K 2445: ^[[1A^[[K 2446: ^[[1A^[[K 2447: ^[[1A^[[K 2448: ^[[1A^[[K 2449: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//internal/fastsum:fastsum', it will not be built. 2450: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2451: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2452: ) 2453: ^[[32m[1 / 1]^[[0m no actions running 2454: Fetching ...l%opam; 2455: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2456: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2457: ^[[1A^[[K 2458: ^[[1A^[[K 2459: ^[[1A^[[K 2460: ^[[1A^[[K 2461: ^[[1A^[[K 2462: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//proto/rperf:rperf_proto', it will not be built. 2463: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2464: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2465: ) 2466: ^[[32m[1 / 1]^[[0m no actions running 2467: Fetching ...l%opam; 2468: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2469: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2470: ^[[1A^[[K 2471: ^[[1A^[[K 2472: ^[[1A^[[K 2473: ^[[1A^[[K 2474: ^[[1A^[[K 2475: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//proto/profiler:profiler_proto', it will not be built. 2476: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2477: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2478: ) 2479: ^[[32m[1 / 1]^[[0m no actions running 2480: Fetching ...l%opam; 2481: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2482: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2483: ^[[1A^[[K 2484: ^[[1A^[[K 2485: ^[[1A^[[K 2486: ^[[1A^[[K 2487: ^[[1A^[[K 2488: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//proto/rperf:rperf', it will not be built. 2489: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2490: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2491: ) 2492: ^[[32m[1 / 1]^[[0m no actions running 2493: Fetching ...l%opam; 2494: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2495: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2496: ^[[1A^[[K 2497: ^[[1A^[[K 2498: ^[[1A^[[K 2499: ^[[1A^[[K 2500: ^[[1A^[[K 2501: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/core/auth:auth', it will not be built. 2502: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2503: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2504: ) 2505: ^[[32m[1 / 1]^[[0m no actions running 2506: Fetching ...l%opam; 2507: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2508: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2509: ^[[1A^[[K 2510: ^[[1A^[[K 2511: ^[[1A^[[K 2512: ^[[1A^[[K 2513: ^[[1A^[[K 2514: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//proto:proto_go_proto', it will not be built. 2515: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2516: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2517: ) 2518: ^[[32m[1 / 1]^[[0m no actions running 2519: Fetching ...l%opam; 2520: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2521: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2522: ^[[1A^[[K 2523: ^[[1A^[[K 2524: ^[[1A^[[K 2525: ^[[1A^[[K 2526: ^[[1A^[[K 2527: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/checkers/dusk:dusk', it will not be built. 2528: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2529: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2530: ) 2531: ^[[32m[1 / 1]^[[0m no actions running 2532: Fetching ...l%opam; 2533: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2534: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2535: ^[[1A^[[K 2536: ^[[1A^[[K 2537: ^[[1A^[[K 2538: ^[[1A^[[K 2539: ^[[1A^[[K 2540: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/integration_test:integration_test', it will not be built. 2541: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2542: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2543: ) 2544: ^[[32m[1 / 1]^[[0m no actions running 2545: Fetching ...l%opam; 2546: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2547: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2548: ^[[1A^[[K 2549: ^[[1A^[[K 2550: ^[[1A^[[K 2551: ^[[1A^[[K 2552: ^[[1A^[[K 2553: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//web:typecheck', it will not be built. 2554: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2555: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2556: ) 2557: ^[[32m[1 / 1]^[[0m no actions running 2558: Fetching ...l%opam; 2559: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2560: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2561: ^[[1A^[[K 2562: ^[[1A^[[K 2563: ^[[1A^[[K 2564: ^[[1A^[[K 2565: ^[[1A^[[K 2566: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/consumers/zen:zen_put_rule', it will not be built. 2567: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2568: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2569: ) 2570: ^[[32m[1 / 1]^[[0m no actions running 2571: Fetching ...l%opam; 2572: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2573: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2574: ^[[1A^[[K 2575: ^[[1A^[[K 2576: ^[[1A^[[K 2577: ^[[1A^[[K 2578: ^[[1A^[[K 2579: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//tools/test:coverage_report_generator', it will not be built. 2580: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2581: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2582: ) 2583: ^[[32m[1 / 1]^[[0m no actions running 2584: Fetching ...l%opam; 2585: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2586: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2587: ^[[1A^[[K 2588: ^[[1A^[[K 2589: ^[[1A^[[K 2590: ^[[1A^[[K 2591: ^[[1A^[[K 2592: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/poller-ng/src/proto:proto_go', it will not be built. 2593: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2594: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2595: ) 2596: ^[[32m[1 / 1]^[[0m no actions running 2597: Fetching ...l%opam; 2598: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2599: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2600: ^[[1A^[[K 2601: ^[[1A^[[K 2602: ^[[1A^[[K 2603: ^[[1A^[[K 2604: ^[[1A^[[K 2605: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/scan:scan_test', it will not be built. 2606: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2607: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2608: ) 2609: ^[[32m[1 / 1]^[[0m no actions running 2610: Fetching ...l%opam; 2611: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2612: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2613: ^[[1A^[[K 2614: ^[[1A^[[K 2615: ^[[1A^[[K 2616: ^[[1A^[[K 2617: ^[[1A^[[K 2618: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/otel:build_script', it will not be built. 2619: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2620: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2621: ) 2622: ^[[32m[1 / 1]^[[0m no actions running 2623: Fetching ...l%opam; 2624: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2625: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2626: ^[[1A^[[K 2627: ^[[1A^[[K 2628: ^[[1A^[[K 2629: ^[[1A^[[K 2630: ^[[1A^[[K 2631: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/core:core_test', it will not be built. 2632: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2633: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2634: ) 2635: ^[[32m[1 / 1]^[[0m no actions running 2636: Fetching ...l%opam; 2637: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2638: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2639: ^[[1A^[[K 2640: ^[[1A^[[K 2641: ^[[1A^[[K 2642: ^[[1A^[[K 2643: ^[[1A^[[K 2644: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//proto/profiler:profiler_go_proto', it will not be built. 2645: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2646: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2647: ) 2648: ^[[32m[1 / 1]^[[0m no actions running 2649: Fetching ...l%opam; 2650: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2651: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2652: ^[[1A^[[K 2653: ^[[1A^[[K 2654: ^[[1A^[[K 2655: ^[[1A^[[K 2656: ^[[1A^[[K 2657: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/consumers/zen:zen', it will not be built. 2658: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2659: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2660: ) 2661: ^[[32m[1 / 1]^[[0m no actions running 2662: Fetching ...l%opam; 2663: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2664: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2665: ^[[1A^[[K 2666: ^[[1A^[[K 2667: ^[[1A^[[K 2668: ^[[1A^[[K 2669: ^[[1A^[[K 2670: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//proto:proto_proto', it will not be built. 2671: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2672: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2673: ) 2674: ^[[32m[1 / 1]^[[0m no actions running 2675: Fetching ...l%opam; 2676: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2677: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2678: ^[[1A^[[K 2679: ^[[1A^[[K 2680: ^[[1A^[[K 2681: ^[[1A^[[K 2682: ^[[1A^[[K 2683: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//web:standalone_app', it will not be built. 2684: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2685: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2686: ) 2687: ^[[32m[1 / 1]^[[0m no actions running 2688: Fetching ...l%opam; 2689: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2690: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2691: ^[[1A^[[K 2692: ^[[1A^[[K 2693: ^[[1A^[[K 2694: ^[[1A^[[K 2695: ^[[1A^[[K 2696: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//proto/discovery:discovery_proto', it will not be built. 2697: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2698: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2699: ) 2700: ^[[32m[1 / 1]^[[0m no actions running 2701: Fetching ...l%opam; 2702: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2703: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2704: ^[[1A^[[K 2705: ^[[1A^[[K 2706: ^[[1A^[[K 2707: ^[[1A^[[K 2708: ^[[1A^[[K 2709: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/config/kv:kv', it will not be built. 2710: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2711: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2712: ) 2713: ^[[32m[1 / 1]^[[0m no actions running 2714: Fetching ...l%opam; 2715: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2716: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2717: ^[[1A^[[K 2718: ^[[1A^[[K 2719: ^[[1A^[[K 2720: ^[[1A^[[K 2721: ^[[1A^[[K 2722: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//packaging/core:core_deb', it will not be built. 2723: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2724: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2725: ) 2726: ^[[32m[1 / 1]^[[0m no actions running 2727: Fetching ...l%opam; 2728: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2729: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2730: ^[[1A^[[K 2731: ^[[1A^[[K 2732: ^[[1A^[[K 2733: ^[[1A^[[K 2734: ^[[1A^[[K 2735: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/core/alerts:alerts', it will not be built. 2736: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2737: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2738: ) 2739: ^[[32m[1 / 1]^[[0m no actions running 2740: Fetching ...l%opam; 2741: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2742: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2743: ^[[1A^[[K 2744: ^[[1A^[[K 2745: ^[[1A^[[K 2746: ^[[1A^[[K 2747: ^[[1A^[[K 2748: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/http:http_test', it will not be built. 2749: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2750: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2751: ) 2752: ^[[32m[1 / 1]^[[0m no actions running 2753: Fetching ...l%opam; 2754: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2755: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2756: ^[[1A^[[K 2757: ^[[1A^[[K 2758: ^[[1A^[[K 2759: ^[[1A^[[K 2760: ^[[1A^[[K 2761: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/otel/proto/opentelemetry/proto/collector/trace/v1:trace', it will not be built. 2762: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2763: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2764: ) 2765: ^[[32m[1 / 1]^[[0m no actions running 2766: Fetching ...l%opam; 2767: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2768: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2769: ^[[1A^[[K 2770: ^[[1A^[[K 2771: ^[[1A^[[K 2772: ^[[1A^[[K 2773: ^[[1A^[[K 2774: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/checkers/snmp:snmp_lib', it will not be built. 2775: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2776: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2777: ) 2778: ^[[32m[1 / 1]^[[0m no actions running 2779: Fetching ...l%opam; 2780: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2781: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2782: ^[[1A^[[K 2783: ^[[1A^[[K 2784: ^[[1A^[[K 2785: ^[[1A^[[K 2786: ^[[1A^[[K 2787: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//tools/test:lcov_merger', it will not be built. 2788: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2789: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2790: ) 2791: ^[[32m[1 / 1]^[[0m no actions running 2792: Fetching ...l%opam; 2793: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2794: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2795: ^[[1A^[[K 2796: ^[[1A^[[K 2797: ^[[1A^[[K 2798: ^[[1A^[[K 2799: ^[[1A^[[K 2800: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/ebpf/profiler/proto/profiler:profiler_go_proto', it will not be built. 2801: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2802: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2803: ) 2804: ^[[32m[1 / 1]^[[0m no actions running 2805: Fetching ...l%opam; 2806: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2807: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2808: ^[[1A^[[K 2809: ^[[1A^[[K 2810: ^[[1A^[[K 2811: ^[[1A^[[K 2812: ^[[1A^[[K 2813: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/poller:poller_test', it will not be built. 2814: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2815: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2816: ) 2817: ^[[32m[1 / 1]^[[0m no actions running 2818: Fetching ...l%opam; 2819: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2820: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2821: ^[[1A^[[K 2822: ^[[1A^[[K 2823: ^[[1A^[[K 2824: ^[[1A^[[K 2825: ^[[1A^[[K 2826: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//third_party/perl:perl_tool', it will not be built. 2827: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2828: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2829: ) 2830: ^[[32m[1 / 1]^[[0m no actions running 2831: Fetching ...l%opam; 2832: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2833: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2834: ^[[1A^[[K 2835: ^[[1A^[[K 2836: ^[[1A^[[K 2837: ^[[1A^[[K 2838: ^[[1A^[[K 2839: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/metrics:metrics_test', it will not be built. 2840: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2841: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2842: ) 2843: ^[[32m[1 / 1]^[[0m no actions running 2844: Fetching ...l%opam; 2845: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2846: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2847: ^[[1A^[[K 2848: ^[[1A^[[K 2849: ^[[1A^[[K 2850: ^[[1A^[[K 2851: ^[[1A^[[K 2852: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/otel/proto/opentelemetry/proto/trace/v1:v1_proto', it will not be built. 2853: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2854: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2855: ) 2856: ^[[32m[1 / 1]^[[0m no actions running 2857: Fetching ...l%opam; 2858: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2859: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2860: ^[[1A^[[K 2861: ^[[1A^[[K 2862: ^[[1A^[[K 2863: ^[[1A^[[K 2864: ^[[1A^[[K 2865: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/poller-ng:poller_ng', it will not be built. 2866: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2867: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2868: ) 2869: ^[[32m[1 / 1]^[[0m no actions running 2870: Fetching ...l%opam; 2871: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2872: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2873: ^[[1A^[[K 2874: ^[[1A^[[K 2875: ^[[1A^[[K 2876: ^[[1A^[[K 2877: ^[[1A^[[K 2878: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/cli:cli', it will not be built. 2879: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2880: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2881: ) 2882: ^[[32m[1 / 1]^[[0m no actions running 2883: Fetching ...l%opam; 2884: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2885: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2886: ^[[1A^[[K 2887: ^[[1A^[[K 2888: ^[[1A^[[K 2889: ^[[1A^[[K 2890: ^[[1A^[[K 2891: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/sweeper:sweeper_test', it will not be built. 2892: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2893: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2894: ) 2895: ^[[32m[1 / 1]^[[0m no actions running 2896: Fetching ...l%opam; 2897: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2898: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2899: ^[[1A^[[K 2900: ^[[1A^[[K 2901: ^[[1A^[[K 2902: ^[[1A^[[K 2903: ^[[1A^[[K 2904: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/consumers/zen:zen_lib', it will not be built. 2905: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2906: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2907: ) 2908: ^[[32m[1 / 1]^[[0m no actions running 2909: Fetching ...l%opam; 2910: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2911: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2912: ^[[1A^[[K 2913: ^[[1A^[[K 2914: ^[[1A^[[K 2915: ^[[1A^[[K 2916: ^[[1A^[[K 2917: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/otel/proto/opentelemetry/proto/collector/trace/v1:v1_go_proto', it will not be built. 2918: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2919: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2920: ) 2921: ^[[32m[1 / 1]^[[0m no actions running 2922: Fetching ...l%opam; 2923: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2924: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2925: ^[[1A^[[K 2926: ^[[1A^[[K 2927: ^[[1A^[[K 2928: ^[[1A^[[K 2929: ^[[1A^[[K 2930: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/sync:sync', it will not be built. 2931: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2932: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2933: ) 2934: ^[[32m[1 / 1]^[[0m no actions running 2935: Fetching ...l%opam; 2936: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2937: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2938: ^[[1A^[[K 2939: ^[[1A^[[K 2940: ^[[1A^[[K 2941: ^[[1A^[[K 2942: ^[[1A^[[K 2943: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/otel/proto/opentelemetry/proto/resource/v1:v1_go_proto', it will not be built. 2944: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2945: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2946: ) 2947: ^[[32m[1 / 1]^[[0m no actions running 2948: Fetching ...l%opam; 2949: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2950: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2951: ^[[1A^[[K 2952: ^[[1A^[[K 2953: ^[[1A^[[K 2954: ^[[1A^[[K 2955: ^[[1A^[[K 2956: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/otel:otel_lib', it will not be built. 2957: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2958: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2959: ) 2960: ^[[32m[1 / 1]^[[0m no actions running 2961: Fetching ...l%opam; 2962: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2963: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2964: ^[[1A^[[K 2965: ^[[1A^[[K 2966: ^[[1A^[[K 2967: ^[[1A^[[K 2968: ^[[1A^[[K 2969: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/mcp:mcp', it will not be built. 2970: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2971: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2972: ) 2973: ^[[32m[1 / 1]^[[0m no actions running 2974: Fetching ...l%opam; 2975: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2976: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2977: ^[[1A^[[K 2978: ^[[1A^[[K 2979: ^[[1A^[[K 2980: ^[[1A^[[K 2981: ^[[1A^[[K 2982: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/consumers/db-event-writer:db-event-writer_test', it will not be built. 2983: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2984: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2985: ) 2986: ^[[32m[1 / 1]^[[0m no actions running 2987: Fetching ...l%opam; 2988: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 2989: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 2990: ^[[1A^[[K 2991: ^[[1A^[[K 2992: ^[[1A^[[K 2993: ^[[1A^[[K 2994: ^[[1A^[[K 2995: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/trapd:build_script', it will not be built. 2996: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 2997: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 2998: ) 2999: ^[[32m[1 / 1]^[[0m no actions running 3000: Fetching ...l%opam; 3001: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 3002: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 3003: ^[[1A^[[K 3004: ^[[1A^[[K 3005: ^[[1A^[[K 3006: ^[[1A^[[K 3007: ^[[1A^[[K 3008: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/registry:registry', it will not be built. 3009: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 3010: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 3011: ) 3012: ^[[32m[1 / 1]^[[0m no actions running 3013: Fetching ...l%opam; 3014: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 3015: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 3016: ^[[1A^[[K 3017: ^[[1A^[[K 3018: ^[[1A^[[K 3019: ^[[1A^[[K 3020: ^[[1A^[[K 3021: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/poller-ng/src/proto:proto_proto', it will not be built. 3022: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 3023: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 3024: ) 3025: ^[[32m[1 / 1]^[[0m no actions running 3026: Fetching ...l%opam; 3027: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 3028: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 3029: ^[[1A^[[K 3030: ^[[1A^[[K 3031: ^[[1A^[[K 3032: ^[[1A^[[K 3033: ^[[1A^[[K 3034: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/checker/snmp:snmp', it will not be built. 3035: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 3036: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 3037: ) 3038: ^[[32m[1 / 1]^[[0m no actions running 3039: Fetching ...l%opam; 3040: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 3041: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 3042: ^[[1A^[[K 3043: ^[[1A^[[K 3044: ^[[1A^[[K 3045: ^[[1A^[[K 3046: ^[[1A^[[K 3047: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/grpc:grpc_test', it will not be built. 3048: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 3049: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 3050: ) 3051: ^[[32m[1 / 1]^[[0m no actions running 3052: Fetching ...l%opam; 3053: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 3054: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 3055: ^[[1A^[[K 3056: ^[[1A^[[K 3057: ^[[1A^[[K 3058: ^[[1A^[[K 3059: ^[[1A^[[K 3060: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//cmd/checkers/dusk:dusk_lib', it will not be built. 3061: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 3062: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 3063: ) 3064: ^[[32m[1 / 1]^[[0m no actions running 3065: Fetching ...l%opam; 3066: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 3067: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 3068: ^[[1A^[[K 3069: ^[[1A^[[K 3070: ^[[1A^[[K 3071: ^[[1A^[[K 3072: ^[[1A^[[K 3073: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/integration_test:integration_test_test', it will not be built. 3074: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 3075: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 3076: ) 3077: ^[[32m[1 / 1]^[[0m no actions running 3078: Fetching ...l%opam; 3079: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 3080: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 3081: ^[[1A^[[K 3082: ^[[1A^[[K 3083: ^[[1A^[[K 3084: ^[[1A^[[K 3085: ^[[1A^[[K 3086: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//proto/profiler:profiler', it will not be built. 3087: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 3088: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configured\ 3089: ) 3090: ^[[32m[1 / 1]^[[0m no actions running 3091: Fetching ...l%opam; 3092: ^[[0;33mINFO^[[0;0m: Creating opam switch 4.14.2 with OCaml version 4.14.2 3093: in opam 2.3.0 root: /home/runner/.local/share/obazl/opam/2.3.0/root 39s 3094: ^[[1A^[[K 3095: ^[[1A^[[K 3096: ^[[1A^[[K 3097: ^[[1A^[[K 3098: ^[[1A^[[K 3099: ^[[1A^[[K(00:20:49) ^[[35mWARNING: ^[[0merrors encountered while analyzing target '//pkg/agent:agent', it will not be built. 3100: error evaluating module extension @@tools_opam+//extensions:opam.bzl%opam 3101: (00:20:49) ^[[32mAnalyzing:^[[0m 225 targets (206 packages loaded, 391 targets configu...
Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
carverauto/serviceradar!2240
No description provided.