fixed proton packaging for rpm #2250

Merged
mfreeman451 merged 1 commit from refs/pull/2250/head into main 2025-09-29 15:24:01 +00:00
mfreeman451 commented 2025-09-29 15:20:48 +00:00 (Migrated from github.com)
Owner

Imported from GitHub pull request.

Original GitHub pull request: #1670
Original author: @mfreeman451
Original URL: https://github.com/carverauto/serviceradar/pull/1670
Original created: 2025-09-29T15:20:48Z
Original updated: 2025-09-29T15:24:04Z
Original head: carverauto/serviceradar:packaging/proton_rpm_broken
Original base: main
Original merged: 2025-09-29T15:24:01Z by @mfreeman451

PR Type

Bug fix


Description

  • Fix runtime directory paths from /var/run to /run

  • Add compatibility symlinks for proton service scripts

  • Correct binary ownership and permissions setup

  • Add proper systemd runtime directory management


Diagram Walkthrough

flowchart LR
  A["Runtime Path Fix"] --> B["/var/run → /run"]
  C["Binary Symlinks"] --> D["proton-server, proton-client, proton-local"]
  E["Ownership Fix"] --> F["root:root for /usr/bin/proton"]
  G["Systemd Config"] --> H["RuntimeDirectory directive"]

File Walkthrough

Relevant files
Bug fix
postinstall.sh
Update runtime paths and binary ownership                               

packaging/proton/scripts/postinstall.sh

  • Change /var/run/proton-server to /run/proton-server in directory
    creation
  • Fix binary ownership to root:root for /usr/bin/proton
  • Update chown commands to use /run instead of /var/run
  • Add missing newline at end of file
+4/-3     
serviceradar-proton.service
Fix systemd service runtime directory configuration           

packaging/proton/systemd/serviceradar-proton.service

  • Change PID file path from /var/run to /run
  • Add RuntimeDirectory and RuntimeDirectoryMode directives
  • Update ExecStart and ExecStop commands to use /run path
  • Add missing newline at end of file
+6/-4     
serviceradar-proton.spec
Add symlinks and fix RPM spec configuration                           

packaging/specs/serviceradar-proton.spec

  • Add compatibility symlinks for proton-server, proton-client,
    proton-local
  • Include symlinks in %files section
  • Add ghost directory for /run/proton-server
  • Fix binary ownership in post-install script
  • Add runtime directory creation in %post section
+12/-1   

Imported from GitHub pull request. Original GitHub pull request: #1670 Original author: @mfreeman451 Original URL: https://github.com/carverauto/serviceradar/pull/1670 Original created: 2025-09-29T15:20:48Z Original updated: 2025-09-29T15:24:04Z Original head: carverauto/serviceradar:packaging/proton_rpm_broken Original base: main Original merged: 2025-09-29T15:24:01Z by @mfreeman451 --- ### **PR Type** Bug fix ___ ### **Description** - Fix runtime directory paths from `/var/run` to `/run` - Add compatibility symlinks for proton service scripts - Correct binary ownership and permissions setup - Add proper systemd runtime directory management ___ ### Diagram Walkthrough ```mermaid flowchart LR A["Runtime Path Fix"] --> B["/var/run → /run"] C["Binary Symlinks"] --> D["proton-server, proton-client, proton-local"] E["Ownership Fix"] --> F["root:root for /usr/bin/proton"] G["Systemd Config"] --> H["RuntimeDirectory directive"] ``` <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>postinstall.sh</strong><dd><code>Update runtime paths and binary ownership</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr> packaging/proton/scripts/postinstall.sh <ul><li>Change <code>/var/run/proton-server</code> to <code>/run/proton-server</code> in directory <br>creation<br> <li> Fix binary ownership to <code>root:root</code> for <code>/usr/bin/proton</code><br> <li> Update chown commands to use <code>/run</code> instead of <code>/var/run</code><br> <li> Add missing newline at end of file</ul> </details> </td> <td><a href="https://github.com/carverauto/serviceradar/pull/1670/files#diff-5521f1f61dd62b42bc9ebc8834945805ed6c63ec6672b10bc4b9b42e9ae295e0">+4/-3</a>&nbsp; &nbsp; &nbsp; </td> </tr> <tr> <td> <details> <summary><strong>serviceradar-proton.service</strong><dd><code>Fix systemd service runtime directory configuration</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr> packaging/proton/systemd/serviceradar-proton.service <ul><li>Change PID file path from <code>/var/run</code> to <code>/run</code><br> <li> Add <code>RuntimeDirectory</code> and <code>RuntimeDirectoryMode</code> directives<br> <li> Update ExecStart and ExecStop commands to use <code>/run</code> path<br> <li> Add missing newline at end of file</ul> </details> </td> <td><a href="https://github.com/carverauto/serviceradar/pull/1670/files#diff-cb37668d548d2fe8d166a37cdadaec0a0fa86d769958440c93c0c21669547cf4">+6/-4</a>&nbsp; &nbsp; &nbsp; </td> </tr> <tr> <td> <details> <summary><strong>serviceradar-proton.spec</strong><dd><code>Add symlinks and fix RPM spec configuration</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr> packaging/specs/serviceradar-proton.spec <ul><li>Add compatibility symlinks for <code>proton-server</code>, <code>proton-client</code>, <br><code>proton-local</code><br> <li> Include symlinks in <code>%files</code> section<br> <li> Add ghost directory for <code>/run/proton-server</code><br> <li> Fix binary ownership in post-install script<br> <li> Add runtime directory creation in <code>%post</code> section</ul> </details> </td> <td><a href="https://github.com/carverauto/serviceradar/pull/1670/files#diff-6aa5dc112bfc6b27d076f2a6a5f87cf7a285ec70dbf032f720b9b4c9dc646eab">+12/-1</a>&nbsp; &nbsp; </td> </tr> </table></td></tr></tr></tbody></table> </details> ___
qodo-code-review[bot] commented 2025-09-29 15:21:29 +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/1670#issuecomment-3347621691
Original created: 2025-09-29T15:21:29Z

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

Ownership Scope

Changing ownership of /usr/bin/proton from proton:proton to root:root is likely correct, but verify that no parts of the system or scripts expect the binary to be owned by the proton user (e.g., self-upgrade or write attempts). Also confirm that capabilities remain effective with root ownership.

chown root:root /usr/bin/proton || log_error "Failed to set ownership on /usr/bin/proton"
chown -R proton:proton /etc/proton-server /var/log/proton-server /run/proton-server /var/lib/proton || log_error "Failed to set ownership"
chmod 755 /usr/bin/proton || log_error "Failed to set permissions on /usr/bin/proton"
chmod 700 /etc/proton-server/users.d /etc/proton-server/config.d || log_error "Failed to set permissions on config directories"
ExecStop Robustness

The ExecStop command depends on a PID file existing at shutdown. Validate behavior if the PID file is missing or stale. Consider using systemd PIDFile tracking with KillMode= or a more resilient ExecStop to avoid stop failures.

ExecStart=/usr/bin/proton-server --config-file /etc/proton-server/config.yaml --pid-file /run/proton-server/proton-server.pid --daemon
ExecStop=/bin/sh -c '/usr/bin/proton stop || kill -TERM $(cat /run/proton-server/proton-server.pid) || true'
ExecReload=/bin/kill -HUP $MAINPID
Symlink Packaging

Symlinks for proton-server/client/local are added as regular files in %files without %attr or %ghost. Ensure they resolve correctly (relative vs absolute) and verify alternatives/conflicts with any existing packages providing the same names.

%files
%attr(0755, root, root) /usr/bin/proton
/usr/bin/proton-server
/usr/bin/proton-client
/usr/bin/proton-local
%config(noreplace) %attr(0644, proton, proton) /etc/proton-server/config.yaml
Imported GitHub PR comment. Original author: @qodo-code-review[bot] Original URL: https://github.com/carverauto/serviceradar/pull/1670#issuecomment-3347621691 Original created: 2025-09-29T15:21:29Z --- ## 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/1670/files#diff-5521f1f61dd62b42bc9ebc8834945805ed6c63ec6672b10bc4b9b42e9ae295e0R226-R229'><strong>Ownership Scope</strong></a> Changing ownership of /usr/bin/proton from proton:proton to root:root is likely correct, but verify that no parts of the system or scripts expect the binary to be owned by the proton user (e.g., self-upgrade or write attempts). Also confirm that capabilities remain effective with root ownership. </summary> ```shell chown root:root /usr/bin/proton || log_error "Failed to set ownership on /usr/bin/proton" chown -R proton:proton /etc/proton-server /var/log/proton-server /run/proton-server /var/lib/proton || log_error "Failed to set ownership" chmod 755 /usr/bin/proton || log_error "Failed to set permissions on /usr/bin/proton" chmod 700 /etc/proton-server/users.d /etc/proton-server/config.d || log_error "Failed to set permissions on config directories" ``` </details> <details><summary><a href='https://github.com/carverauto/serviceradar/pull/1670/files#diff-cb37668d548d2fe8d166a37cdadaec0a0fa86d769958440c93c0c21669547cf4R8-R10'><strong>ExecStop Robustness</strong></a> The ExecStop command depends on a PID file existing at shutdown. Validate behavior if the PID file is missing or stale. Consider using systemd PIDFile tracking with KillMode= or a more resilient ExecStop to avoid stop failures. </summary> ```txt ExecStart=/usr/bin/proton-server --config-file /etc/proton-server/config.yaml --pid-file /run/proton-server/proton-server.pid --daemon ExecStop=/bin/sh -c '/usr/bin/proton stop || kill -TERM $(cat /run/proton-server/proton-server.pid) || true' ExecReload=/bin/kill -HUP $MAINPID ``` </details> <details><summary><a href='https://github.com/carverauto/serviceradar/pull/1670/files#diff-6aa5dc112bfc6b27d076f2a6a5f87cf7a285ec70dbf032f720b9b4c9dc646eabR41-R46'><strong>Symlink Packaging</strong></a> Symlinks for proton-server/client/local are added as regular files in %files without %attr or %ghost. Ensure they resolve correctly (relative vs absolute) and verify alternatives/conflicts with any existing packages providing the same names. </summary> ```txt %files %attr(0755, root, root) /usr/bin/proton /usr/bin/proton-server /usr/bin/proton-client /usr/bin/proton-local %config(noreplace) %attr(0644, proton, proton) /etc/proton-server/config.yaml ``` </details> </td></tr> </table>
qodo-code-review[bot] commented 2025-09-29 15:22:36 +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/1670#issuecomment-3347626016
Original created: 2025-09-29T15:22:36Z

PR Code Suggestions

Explore these optional code suggestions:

CategorySuggestion                                                                                                                                    Impact
High-level
Simplify packaging by removing redundant scripts

Remove the redundant manual creation of the /run/proton-server directory from
the postinstall.sh and .spec files, as this is now handled by the
RuntimeDirectory systemd directive. Also, remove the unnecessary chown command
for /usr/bin/proton in the .spec file's %post section, since ownership is
already set in the %files section.

Examples:

packaging/specs/serviceradar-proton.spec [76-82]
install -d -m 0755 -o proton -g proton /run/proton-server

# Set proper ownership and permissions
chown -R proton:proton /etc/proton-server
chown -R proton:proton /var/lib/proton
chown -R proton:proton /var/log/proton-server
chown root:root /usr/bin/proton
packaging/proton/scripts/postinstall.sh [114]
for dir in /var/lib/proton/tmp /var/lib/proton/checkpoint /var/lib/proton/nativelog/meta /var/lib/proton/nativelog/log /var/lib/proton/user_files /var/log/proton-server /run/proton-server /etc/proton-server/config.d /etc/proton-server/users.d /var/lib/proton/access; do

Solution Walkthrough:

Before:

# serviceradar-proton.service
[Service]
RuntimeDirectory=proton-server
...

# postinstall.sh
for dir in ... /run/proton-server ...; do
    mkdir -p "$dir"
done

# serviceradar-proton.spec
%files
%attr(0755, root, root) /usr/bin/proton
...
%post
install -d -m 0755 -o proton -g proton /run/proton-server
chown root:root /usr/bin/proton

After:

# serviceradar-proton.service
[Service]
RuntimeDirectory=proton-server
...

# postinstall.sh
for dir in ...; do # /run/proton-server removed
    mkdir -p "$dir"
done

# serviceradar-proton.spec
%files
%attr(0755, root, root) /usr/bin/proton
...
%post
# install and chown commands removed

Suggestion importance[1-10]: 8

__

Why: The suggestion correctly identifies redundant logic in packaging scripts (postinstall.sh, .spec) that is now handled by systemd and rpm, leading to simpler and more robust code.

Medium
General
Remove redundant runtime directory creation

Remove the redundant creation of the /run/proton-server directory from the %post
script, as it is already handled by the RuntimeDirectory directive in the
systemd service file.

packaging/specs/serviceradar-proton.spec [76]

-install -d -m 0755 -o proton -g proton /run/proton-server
+# RuntimeDirectory in systemd service will create /run/proton-server automatically
  • Apply / Chat
Suggestion importance[1-10]: 7

__

Why: The suggestion correctly identifies that creating the /run/proton-server directory is redundant, as systemd's RuntimeDirectory directive already handles this task.

Medium
Add explicit symlink attributes

Add explicit %attr attributes for the new symlinks in the %files section of the
RPM spec to ensure correct ownership and permissions.

packaging/specs/serviceradar-proton.spec [43-45]

-/usr/bin/proton-server
-/usr/bin/proton-client
-/usr/bin/proton-local
+%attr(0755, root, root) /usr/bin/proton-server
+%attr(0755, root, root) /usr/bin/proton-client
+%attr(0755, root, root) /usr/bin/proton-local
  • Apply / Chat
Suggestion importance[1-10]: 6

__

Why: This is a good packaging practice that makes the RPM spec file more robust and explicit about file attributes, preventing potential permission issues.

Low
  • More
Imported GitHub PR comment. Original author: @qodo-code-review[bot] Original URL: https://github.com/carverauto/serviceradar/pull/1670#issuecomment-3347626016 Original created: 2025-09-29T15:22:36Z --- ## PR Code Suggestions ✨ <!-- bb02413 --> 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>High-level</td> <td> <details><summary>Simplify packaging by removing redundant scripts</summary> ___ **Remove the redundant manual creation of the <code>/run/proton-server</code> directory from <br>the <code>postinstall.sh</code> and <code>.spec</code> files, as this is now handled by the <br><code>RuntimeDirectory</code> systemd directive. Also, remove the unnecessary <code>chown</code> command <br>for <code>/usr/bin/proton</code> in the <code>.spec</code> file's <code>%post</code> section, since ownership is <br>already set in the <code>%files</code> section.** ### Examples: <details> <summary> <a href="https://github.com/carverauto/serviceradar/pull/1670/files#diff-6aa5dc112bfc6b27d076f2a6a5f87cf7a285ec70dbf032f720b9b4c9dc646eabR76-R82">packaging/specs/serviceradar-proton.spec [76-82]</a> </summary> ```spec install -d -m 0755 -o proton -g proton /run/proton-server # Set proper ownership and permissions chown -R proton:proton /etc/proton-server chown -R proton:proton /var/lib/proton chown -R proton:proton /var/log/proton-server chown root:root /usr/bin/proton ``` </details> <details> <summary> <a href="https://github.com/carverauto/serviceradar/pull/1670/files#diff-5521f1f61dd62b42bc9ebc8834945805ed6c63ec6672b10bc4b9b42e9ae295e0R114-R114">packaging/proton/scripts/postinstall.sh [114]</a> </summary> ```shell for dir in /var/lib/proton/tmp /var/lib/proton/checkpoint /var/lib/proton/nativelog/meta /var/lib/proton/nativelog/log /var/lib/proton/user_files /var/log/proton-server /run/proton-server /etc/proton-server/config.d /etc/proton-server/users.d /var/lib/proton/access; do ``` </details> ### Solution Walkthrough: #### Before: ```shell # serviceradar-proton.service [Service] RuntimeDirectory=proton-server ... # postinstall.sh for dir in ... /run/proton-server ...; do mkdir -p "$dir" done # serviceradar-proton.spec %files %attr(0755, root, root) /usr/bin/proton ... %post install -d -m 0755 -o proton -g proton /run/proton-server chown root:root /usr/bin/proton ``` #### After: ```shell # serviceradar-proton.service [Service] RuntimeDirectory=proton-server ... # postinstall.sh for dir in ...; do # /run/proton-server removed mkdir -p "$dir" done # serviceradar-proton.spec %files %attr(0755, root, root) /usr/bin/proton ... %post # install and chown commands removed ``` <details><summary>Suggestion importance[1-10]: 8</summary> __ Why: The suggestion correctly identifies redundant logic in packaging scripts (`postinstall.sh`, `.spec`) that is now handled by `systemd` and `rpm`, leading to simpler and more robust code. </details></details></td><td align=center>Medium </td></tr><tr><td rowspan=2>General</td> <td> <details><summary>Remove redundant runtime directory creation</summary> ___ **Remove the redundant creation of the <code>/run/proton-server</code> directory from the <code>%post</code> <br>script, as it is already handled by the <code>RuntimeDirectory</code> directive in the <br>systemd service file.** [packaging/specs/serviceradar-proton.spec [76]](https://github.com/carverauto/serviceradar/pull/1670/files#diff-6aa5dc112bfc6b27d076f2a6a5f87cf7a285ec70dbf032f720b9b4c9dc646eabR76-R76) ```diff -install -d -m 0755 -o proton -g proton /run/proton-server +# RuntimeDirectory in systemd service will create /run/proton-server automatically ``` - [ ] **Apply / Chat** <!-- /improve --apply_suggestion=1 --> <details><summary>Suggestion importance[1-10]: 7</summary> __ Why: The suggestion correctly identifies that creating the `/run/proton-server` directory is redundant, as `systemd`'s `RuntimeDirectory` directive already handles this task. </details></details></td><td align=center>Medium </td></tr><tr><td> <details><summary>Add explicit symlink attributes</summary> ___ **Add explicit <code>%attr</code> attributes for the new symlinks in the <code>%files</code> section of the <br>RPM spec to ensure correct ownership and permissions.** [packaging/specs/serviceradar-proton.spec [43-45]](https://github.com/carverauto/serviceradar/pull/1670/files#diff-6aa5dc112bfc6b27d076f2a6a5f87cf7a285ec70dbf032f720b9b4c9dc646eabR43-R45) ```diff -/usr/bin/proton-server -/usr/bin/proton-client -/usr/bin/proton-local +%attr(0755, root, root) /usr/bin/proton-server +%attr(0755, root, root) /usr/bin/proton-client +%attr(0755, root, root) /usr/bin/proton-local ``` - [ ] **Apply / Chat** <!-- /improve --apply_suggestion=2 --> <details><summary>Suggestion importance[1-10]: 6</summary> __ Why: This is a good packaging practice that makes the RPM spec file more robust and explicit about file attributes, preventing potential permission issues. </details></details></td><td align=center>Low </td></tr> <tr><td align="center" colspan="2"> - [ ] More <!-- /improve --more_suggestions=true --> </td><td></td></tr></tbody></table>
qodo-code-review[bot] commented 2025-09-29 15:22:44 +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/1670#issuecomment-3347626593
Original created: 2025-09-29T15:22:44Z

CI Feedback 🧐

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

Action: build

Failed stage: Test []

Failed test name: ""

Failure summary:

The action failed because Bazel could not analyze targets due to an opam toolchain setup failure.
Specifically:
- While evaluating module extension @@tools_opam+//extensions:opam.bzl%opam, creating
the opam switch 5.2.0 failed with exit code 31.
- Error details (external file
/home/runner/.bazel/external/tools_opam+/extensions/opam/opam_toolchain_xdg.bzl, line 242, column
17):
- fail("opam switch create failed; cmd=[... "opam", "switch", "create", "5.2.0", ...] rc=31
...)
- opam error report shows ERROR while compiling ocaml-base-compiler.5.2.0 during ./configure
...
- Output includes bwrap: loopback: Failed RTM_NEWADDR: Operation not permitted, indicating
bubblewrap sandbox/network namespace operation not permitted in the CI environment.
- As a result,
many targets showed WARNING: errors encountered while analyzing target ... error evaluating module
extension @@tools_opam+//extensions:opam.bzl%opam.
- Bazel concluded: ERROR: command succeeded, but
not all targets were analyzed and later ERROR: No test targets were found, yet testing was
requested.
- The build and tests did not complete successfully, causing the job to exit with code 1.

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

299:  (15:21:30) ^[[35mWARNING: ^[[0mThe following configs were expanded more than once: [remote]. For repeatable flags, repeats are counted twice and may lead to unexpected behavior.
300:  (15:21:30) ^[[35mWARNING: ^[[0moption '--remote_timeout' was expanded to from both option '--config=ci' (source command line options) and option '--config=ci' (source command line options)
301:  (15:21:30) ^[[32mINFO: ^[[0mInvocation ID: 1b265c02-15de-4ba0-ad10-06cc66017b8c
302:  (15:21:30) ^[[32mINFO: ^[[0mStreaming build results to: ^[[36mhttps://app.buildbuddy.io/invocation/1b265c02-15de-4ba0-ad10-06cc66017b8c^[[0m
303:  (15:21:30) ^[[32mINFO: ^[[0mReading 'startup' options from /home/runner/work/serviceradar/serviceradar/.bazelrc: --max_idle_secs=60
304:  (15:21:30) ^[[32mINFO: ^[[0mReading 'startup' options from /home/runner/.bazelrc: --output_base=/home/runner/.bazel
305:  (15:21:30) ^[[32mINFO: ^[[0mOptions provided by the client:
306:  Inherited 'common' options: --isatty=0 --terminal_columns=80
307:  (15:21:30) ^[[32mINFO: ^[[0mReading rc options for 'test' from /home/runner/work/serviceradar/serviceradar/.bazelrc:
308:  Inherited 'common' options: --announce_rc --experimental_convenience_symlinks=clean --color=yes --curses=yes
309:  (15:21:30) ^[[32mINFO: ^[[0mReading rc options for 'test' from /home/runner/work/serviceradar/serviceradar/.bazelrc.remote:
310:  Inherited 'common' options: --remote_header=x-buildbuddy-api-key=***
311:  (15:21:30) ^[[32mINFO: ^[[0mReading rc options for 'test' from /home/runner/work/serviceradar/serviceradar/.bazelrc:
312:  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
313:  (15:21:30) ^[[32mINFO: ^[[0mReading rc options for 'test' from /home/runner/work/serviceradar/serviceradar/.bazelrc:
314:  'test' options: --test_output=errors --action_env=OPENSSL_NO_PKG_CONFIG=1 --flaky_test_attempts=2
315:  (15:21:30) ^[[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
316:  (15:21:30) ^[[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
317:  (15:21:30) ^[[32mINFO: ^[[0mFound applicable config definition test:remote in file /home/runner/work/serviceradar/serviceradar/.bazelrc: --copt=-Wno-use-after-free
318:  (15:21:30) ^[[32mINFO: ^[[0mFound applicable config definition test:ci in file /home/runner/work/serviceradar/serviceradar/.bazelrc: --config=remote --test_tag_filters=-manual --test_output=errors
319:  (15:21:30) ^[[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
...

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