Updates/bazel cicd errors #2232

Merged
mfreeman451 merged 41 commits from refs/pull/2232/head into main 2025-09-23 16:18:20 +00:00
mfreeman451 commented 2025-09-22 03:41:06 +00:00 (Migrated from github.com)
Owner

Imported from GitHub pull request.

Original GitHub pull request: #1652
Original author: @mfreeman451
Original URL: https://github.com/carverauto/serviceradar/pull/1652
Original created: 2025-09-22T03:41:06Z
Original updated: 2025-12-08T06:55:35Z
Original head: carverauto/serviceradar:updates/bazel_cicd_errors
Original base: main
Original merged: 2025-09-23T16:18:20Z by @mfreeman451

PR Type

Other


Description

  • Replace Bazel Bootstrap workflow with comprehensive CI workflow

  • Add BuildBuddy remote build configuration and API integration

  • Configure CI profile with remote execution settings


Diagram Walkthrough

flowchart LR
  A["Old Bootstrap Workflow"] --> B["New CI Workflow"]
  B --> C["BuildBuddy Integration"]
  C --> D["Remote Build Execution"]
  E[".bazelrc"] --> F["CI Configuration"]
  F --> D

File Walkthrough

Relevant files
Configuration changes
.bazelrc
Configure BuildBuddy remote execution for CI                         

.bazelrc

  • Add BuildBuddy remote configuration to CI profile
  • Configure build metadata and results URL
  • Set up remote backend connection
+4/-0     
Miscellaneous
bazel-bootstrap.yml
Remove old Bootstrap workflow                                                       

.github/workflows/bazel-bootstrap.yml

  • Remove entire Bazel Bootstrap workflow file
  • Delete docs lint target build job
+0/-36   
Enhancement
main.yml
Add new CI workflow with BuildBuddy                                           

.github/workflows/main.yml

  • Create new comprehensive CI workflow
  • Add BuildBuddy API key integration
  • Include build and test jobs with remote execution
  • Install bazelisk manually for CI environment
+40/-0   

Imported from GitHub pull request. Original GitHub pull request: #1652 Original author: @mfreeman451 Original URL: https://github.com/carverauto/serviceradar/pull/1652 Original created: 2025-09-22T03:41:06Z Original updated: 2025-12-08T06:55:35Z Original head: carverauto/serviceradar:updates/bazel_cicd_errors Original base: main Original merged: 2025-09-23T16:18:20Z by @mfreeman451 --- ### **PR Type** Other ___ ### **Description** - Replace Bazel Bootstrap workflow with comprehensive CI workflow - Add BuildBuddy remote build configuration and API integration - Configure CI profile with remote execution settings ___ ### Diagram Walkthrough ```mermaid flowchart LR A["Old Bootstrap Workflow"] --> B["New CI Workflow"] B --> C["BuildBuddy Integration"] C --> D["Remote Build Execution"] E[".bazelrc"] --> F["CI Configuration"] F --> D ``` <details> <summary><h3> File Walkthrough</h3></summary> <table><thead><tr><th></th><th align="left">Relevant files</th></tr></thead><tbody><tr><td><strong>Configuration changes</strong></td><td><table> <tr> <td> <details> <summary><strong>.bazelrc</strong><dd><code>Configure BuildBuddy remote execution for CI</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr> .bazelrc <ul><li>Add BuildBuddy remote configuration to CI profile<br> <li> Configure build metadata and results URL<br> <li> Set up remote backend connection</ul> </details> </td> <td><a href="https://github.com/carverauto/serviceradar/pull/1652/files#diff-544556920c45b42cbfe40159b082ce8af6bd929e492d076769226265f215832f">+4/-0</a>&nbsp; &nbsp; &nbsp; </td> </tr> </table></td></tr><tr><td><strong>Miscellaneous</strong></td><td><table> <tr> <td> <details> <summary><strong>bazel-bootstrap.yml</strong><dd><code>Remove old Bootstrap workflow</code>&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; </dd></summary> <hr> .github/workflows/bazel-bootstrap.yml <ul><li>Remove entire Bazel Bootstrap workflow file<br> <li> Delete docs lint target build job</ul> </details> </td> <td><a href="https://github.com/carverauto/serviceradar/pull/1652/files#diff-fab69e9bf6a64c8cd4fab4e300f193db8477bda6f7561af140337c000e904528">+0/-36</a>&nbsp; &nbsp; </td> </tr> </table></td></tr><tr><td><strong>Enhancement</strong></td><td><table> <tr> <td> <details> <summary><strong>main.yml</strong><dd><code>Add new CI workflow with BuildBuddy</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr> .github/workflows/main.yml <ul><li>Create new comprehensive CI workflow<br> <li> Add BuildBuddy API key integration<br> <li> Include build and test jobs with remote execution<br> <li> Install bazelisk manually for CI environment</ul> </details> </td> <td><a href="https://github.com/carverauto/serviceradar/pull/1652/files#diff-7829468e86c1cc5d5133195b5cb48e1ff6c75e3e9203777f6b2e379d9e4882b3">+40/-0</a>&nbsp; &nbsp; </td> </tr> </table></td></tr></tr></tbody></table> </details> ___
qodo-code-review[bot] commented 2025-09-22 03:41:31 +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/1652#issuecomment-3316659148
Original created: 2025-09-22T03:41:31Z

PR Reviewer Guide 🔍

Here are some key observations to aid the review process:

⏱️ Estimated effort to review: 2 🔵🔵
🧪 No relevant tests
🔒 Security concerns

Supply chain integrity:
The workflow downloads and executes a binary (Bazelisk) directly from GitHub releases without checksum verification or signature validation, which could be risky if the release is tampered with. Consider verifying a published SHA256 or using a vetted action or package manager.
Sensitive information exposure: The BuildBuddy API key is injected into --remote_header; if Bazel emits full command lines or remote headers in error output, it could leak. Ensure GitHub Actions masking is in place and Bazel logs do not print header values.

 Recommended focus areas for review

Version Pinning

The Bazelisk download uses a hardcoded URL without checksum verification. Consider pinning via a specific commit SHA for the action or verifying the binary checksum to ensure supply-chain integrity.

- name: Install bazelisk
  run: |
    curl -sSLo bazelisk-linux-amd64 "https://github.com/bazelbuild/bazelisk/releases/download/v1.1.0/bazelisk-linux-amd64"
    mkdir -p "${GITHUB_WORKSPACE}/bin"
    mv bazelisk-linux-amd64 "${GITHUB_WORKSPACE}/bin/bazel"
    chmod +x "${GITHUB_WORKSPACE}/bin/bazel"

Secret Handling

The BuildBuddy API key is passed via --remote_header; ensure it is masked in logs and not echoed. Consider using a bazelrc with build:ci --remote_header=... read from envexpansion or GitHub Actions mask to avoid accidental exposure in verbose logs.

- name: Build
  env:
    BUILDBUDDY_ORG_API_KEY: ${{ secrets.BUILDBUDDY_ORG_API_KEY }}
  run: |
    "${GITHUB_WORKSPACE}/bin/bazel" build \
      --config=ci \
      --remote_header=x-buildbuddy-api-key=${BUILDBUDDY_ORG_API_KEY} \
      //...

- name: Test
  env:
    BUILDBUDDY_ORG_API_KEY: ${{ secrets.BUILDBUDDY_ORG_API_KEY }}
  run: |
    "${GITHUB_WORKSPACE}/bin/bazel" test \
      --config=ci \
      --remote_header=x-buildbuddy-api-key=${BUILDBUDDY_ORG_API_KEY} \
      //...
BES/Remote Config

Ensure bes_results_url and bes_backend align with remote execution settings; missing --bes_results_url often needs a trailing token or project scoping. Validate that --config=remote layering doesn’t override/duplicate BES settings causing conflicts.

build:ci --config=remote
build:ci --build_metadata=ROLE=CI
build:ci --bes_results_url=https://app.buildbuddy.io/invocation/
build:ci --bes_backend=grpcs://remote.buildbuddy.io
Imported GitHub PR comment. Original author: @qodo-code-review[bot] Original URL: https://github.com/carverauto/serviceradar/pull/1652#issuecomment-3316659148 Original created: 2025-09-22T03:41:31Z --- ## 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>Security concerns</strong><br><br> <strong>Supply chain integrity:</strong><br> The workflow downloads and executes a binary (Bazelisk) directly from GitHub releases without checksum verification or signature validation, which could be risky if the release is tampered with. Consider verifying a published SHA256 or using a vetted action or package manager. Sensitive information exposure: The BuildBuddy API key is injected into --remote_header; if Bazel emits full command lines or remote headers in error output, it could leak. Ensure GitHub Actions masking is in place and Bazel logs do not print header values.</td></tr> <tr><td>⚡&nbsp;<strong>Recommended focus areas for review</strong><br><br> <details><summary><a href='https://github.com/carverauto/serviceradar/pull/1652/files#diff-7829468e86c1cc5d5133195b5cb48e1ff6c75e3e9203777f6b2e379d9e4882b3R17-R23'><strong>Version Pinning</strong></a> The Bazelisk download uses a hardcoded URL without checksum verification. Consider pinning via a specific commit SHA for the action or verifying the binary checksum to ensure supply-chain integrity. </summary> ```yaml - name: Install bazelisk run: | curl -sSLo bazelisk-linux-amd64 "https://github.com/bazelbuild/bazelisk/releases/download/v1.1.0/bazelisk-linux-amd64" mkdir -p "${GITHUB_WORKSPACE}/bin" mv bazelisk-linux-amd64 "${GITHUB_WORKSPACE}/bin/bazel" chmod +x "${GITHUB_WORKSPACE}/bin/bazel" ``` </details> <details><summary><a href='https://github.com/carverauto/serviceradar/pull/1652/files#diff-7829468e86c1cc5d5133195b5cb48e1ff6c75e3e9203777f6b2e379d9e4882b3R24-R40'><strong>Secret Handling</strong></a> The BuildBuddy API key is passed via --remote_header; ensure it is masked in logs and not echoed. Consider using a bazelrc with build:ci --remote_header=... read from envexpansion or GitHub Actions mask to avoid accidental exposure in verbose logs. </summary> ```yaml - name: Build env: BUILDBUDDY_ORG_API_KEY: ${{ secrets.BUILDBUDDY_ORG_API_KEY }} run: | "${GITHUB_WORKSPACE}/bin/bazel" build \ --config=ci \ --remote_header=x-buildbuddy-api-key=${BUILDBUDDY_ORG_API_KEY} \ //... - name: Test env: BUILDBUDDY_ORG_API_KEY: ${{ secrets.BUILDBUDDY_ORG_API_KEY }} run: | "${GITHUB_WORKSPACE}/bin/bazel" test \ --config=ci \ --remote_header=x-buildbuddy-api-key=${BUILDBUDDY_ORG_API_KEY} \ //... ``` </details> <details><summary><a href='https://github.com/carverauto/serviceradar/pull/1652/files#diff-544556920c45b42cbfe40159b082ce8af6bd929e492d076769226265f215832fR31-R34'><strong>BES/Remote Config</strong></a> Ensure bes_results_url and bes_backend align with remote execution settings; missing --bes_results_url often needs a trailing token or project scoping. Validate that --config=remote layering doesn’t override/duplicate BES settings causing conflicts. </summary> ```txt build:ci --config=remote build:ci --build_metadata=ROLE=CI build:ci --bes_results_url=https://app.buildbuddy.io/invocation/ build:ci --bes_backend=grpcs://remote.buildbuddy.io ``` </details> </td></tr> </table>
github-advanced-security[bot] commented 2025-09-22 03:41:59 +00:00 (Migrated from github.com)
Author
Owner

Imported GitHub PR review comment.

Original author: @github-advanced-security[bot]
Original URL: https://github.com/carverauto/serviceradar/pull/1652#discussion_r2366651581
Original created: 2025-09-22T03:41:59Z
Original path: .github/workflows/main.yml
Original line: 43

Workflow does not contain permissions

Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {{contents: read}}

Show more details

Imported GitHub PR review comment. Original author: @github-advanced-security[bot] Original URL: https://github.com/carverauto/serviceradar/pull/1652#discussion_r2366651581 Original created: 2025-09-22T03:41:59Z Original path: .github/workflows/main.yml Original line: 43 --- ## Workflow does not contain permissions Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {{contents: read}} [Show more details](https://github.com/carverauto/serviceradar/security/code-scanning/73)
qodo-code-review[bot] commented 2025-09-22 03:42:28 +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/1652#issuecomment-3316660368
Original created: 2025-09-22T03:42:28Z

PR Code Suggestions

Latest suggestions up to c8e0030

CategorySuggestion                                                                                                                                    Impact
Incremental [*]
Restore missing filegroup target

Restore the filegroup named openssl_src_runfiles_patch in the BUILD.bazel file,
as it is referenced by this name in MODULE.bazel and its removal will cause a
build failure.

third_party/rust_patches/BUILD.bazel [3]

+filegroup(
+    name = "openssl_src_runfiles_patch",
+    srcs = ["openssl_src_runfiles_patch"],
+)
+
 exports_files(["openssl_src_runfiles_patch"])
  • Apply / Chat
Suggestion importance[1-10]: 9

__

Why: The suggestion correctly identifies that removing the filegroup target will break the build, as MODULE.bazel references it by its name, not just as a file. This is a critical fix to prevent build failures.

High
Select correct macOS toolchain by arch

Modify the toolchain selection logic for macOS to check mctx.os.arch and select
the appropriate toolchain for both arm64 and x86_64 architectures, preventing
build failures on Intel-based Macs.

third_party/vendor/tools_opam/extensions/opam.bzl [107-116]

 if mctx.os.name == "mac os x":
-    toolchain_flag = "@local_config_cc_toolchains//:cc-toolchain-darwin_arm64"
+    if mctx.os.arch in ("aarch64", "arm64"):
+        toolchain_flag = "@local_config_cc_toolchains//:cc-toolchain-darwin_arm64"
+    elif mctx.os.arch in ("x86_64", "amd64"):
+        toolchain_flag = "@local_config_cc_toolchains//:cc-toolchain-darwin_x86_64"
 elif mctx.os.name == "linux":
     if mctx.os.arch in ("x86_64", "amd64"):
         toolchain_flag = "@local_config_cc_toolchains//:cc-toolchain-k8"
     elif mctx.os.arch in ("aarch64", "aarch64_be"):
         toolchain_flag = "@local_config_cc_toolchains//:cc-toolchain-aarch64"
 
 if toolchain_flag:
     cmd.append("--extra_toolchains={}".format(toolchain_flag))
  • Apply / Chat
Suggestion importance[1-10]: 8

__

Why: The suggestion correctly points out that hardcoding the macOS toolchain to arm64 will cause build failures on Intel-based macOS systems. Adding architecture detection makes the build process more robust and portable.

Medium
General
Handle missing HOME safely

Safeguard against a missing HOME environment variable by providing a fallback
path to prevent potential runtime errors and non-hermetic writes.

third_party/vendor/tools_opam/extensions/opam.bzl [122-130]

+home_dir = mctx.getenv("HOME")
+cache_dir = (home_dir + "/.cache") if home_dir else mctx.paths.workspace + "/.cache"
 res = mctx.execute(
     cmd,
     environment = {
-        "HOME": mctx.getenv("HOME") + "/.cache",
-        "XDG_CACHE_HOME": mctx.getenv("HOME") + "/.cache",
+        "HOME": cache_dir if home_dir else mctx.paths.workspace + "/.cache",
+        "XDG_CACHE_HOME": cache_dir,
         "OBAZL_NO_BWRAP": "1",
     },
     quiet = (verbosity < 1),
 )
  • Apply / Chat
Suggestion importance[1-10]: 7

__

Why: The suggestion correctly points out that mctx.getenv("HOME") can be None, which would cause a runtime error. Adding a fallback improves the robustness of the script in hermetic environments.

Medium
  • Update

Previous suggestions

Suggestions up to commit 22a5372
CategorySuggestion                                                                                                                                    Impact
High-level
Simplify and improve CI workflow maintainability

Improve the CI workflow's maintainability by using the bazel-contrib/setup-bazel
action instead of manually installing Bazelisk. Centralize the BuildBuddy API
key configuration by generating a .bazelrc.remote file from secrets rather than
passing it on each command line.

Examples:

.github/workflows/main.yml [17-31]
      - name: Install bazelisk
        run: |
          curl -sSLo bazelisk-linux-amd64 "https://github.com/bazelbuild/bazelisk/releases/download/v1.1.0/bazelisk-linux-amd64"
          mkdir -p "${GITHUB_WORKSPACE}/bin"
          mv bazelisk-linux-amd64 "${GITHUB_WORKSPACE}/bin/bazel"
          chmod +x "${GITHUB_WORKSPACE}/bin/bazel"

      - name: Build
        env:
          BUILDBUDDY_ORG_API_KEY: ${{ secrets.BUILDBUDDY_ORG_API_KEY }}

 ... (clipped 5 lines)

Solution Walkthrough:

Before:

# in .github/workflows/main.yml
jobs:
  build:
    steps:
      - name: Install bazelisk
        run: |
          curl -sSLo bazelisk-linux-amd64 ...
          mkdir -p "${GITHUB_WORKSPACE}/bin"
          mv bazelisk-linux-amd64 "${GITHUB_WORKSPACE}/bin/bazel"
          chmod +x "${GITHUB_WORKSPACE}/bin/bazel"
      - name: Build
        run: |
          "${GITHUB_WORKSPACE}/bin/bazel" build \
            --config=ci \
            --remote_header=x-buildbuddy-api-key=${BUILDBUDDY_ORG_API_KEY} \
            //...

After:

# in .github/workflows/main.yml
jobs:
  build:
    steps:
      - name: Install Bazel
        uses: bazel-contrib/setup-bazel@...

      - name: Configure Remote Build
        run: |
          echo "build --remote_header=x-buildbuddy-api-key=${{ secrets.BUILDBUDDY_ORG_API_KEY }}" >> .bazelrc.remote

      - name: Build
        run: bazel build --config=ci //...

Suggestion importance[1-10]: 8

__

Why: The suggestion correctly identifies that manually installing Bazelisk and passing the API key on the command line is brittle; using a setup action and a .bazelrc.remote file is a more robust and maintainable approach for the CI workflow.

Medium
Possible issue
Avoid redundant builds in CI
Suggestion Impact:The separate "Build" step invoking `bazel build` was removed, leaving only the test step to handle the build via `bazel test`.

code diff:

-      - name: Build
-        env:
-          BUILDBUDDY_ORG_API_KEY: ${{ secrets.BUILDBUDDY_ORG_API_KEY }}
+      - name: Install Bazel
+        uses: bazel-contrib/setup-bazel@v3
+        with:
+          bazel-version-file: .bazelversion
+
+      - name: Configure remote cache
+        if: ${{ secrets.BUILDBUDDY_ORG_API_KEY != '' }}
         run: |
-          "${GITHUB_WORKSPACE}/bin/bazel" build \
-            --config=ci \
-            --remote_header=x-buildbuddy-api-key=${BUILDBUDDY_ORG_API_KEY} \
-            //...
+          cat <<EOF > .bazelrc.remote
+          common --remote_header=x-buildbuddy-api-key=${{ secrets.BUILDBUDDY_ORG_API_KEY }}
+          EOF
 
       - name: Test
-        env:
-          BUILDBUDDY_ORG_API_KEY: ${{ secrets.BUILDBUDDY_ORG_API_KEY }}
         run: |
-          "${GITHUB_WORKSPACE}/bin/bazel" test \
+          bazel test \
             --config=ci \
-            --remote_header=x-buildbuddy-api-key=${BUILDBUDDY_ORG_API_KEY} \
             //...

Remove the redundant Build step from the CI workflow, as bazel test already
performs a build, which will make the CI process more efficient.

.github/workflows/main.yml [24-40]

-- name: Build
-  env:
-    BUILDBUDDY_ORG_API_KEY: ${{ secrets.BUILDBUDDY_ORG_API_KEY }}
-  run: |
-    "${GITHUB_WORKSPACE}/bin/bazel" build \
-      --config=ci \
-      --remote_header=x-buildbuddy-api-key=${BUILDBUDDY_ORG_API_KEY} \
-      //...
-
 - name: Test
   env:
     BUILDBUDDY_ORG_API_KEY: ${{ secrets.BUILDBUDDY_ORG_API_KEY }}
   run: |
     "${GITHUB_WORKSPACE}/bin/bazel" test \
       --config=ci \
       --remote_header=x-buildbuddy-api-key=${BUILDBUDDY_ORG_API_KEY} \
       //...
Suggestion importance[1-10]: 7

__

Why: The suggestion correctly points out that bazel test includes a build phase, making the separate bazel build step redundant and inefficient, even with caching. Removing it simplifies the workflow and improves CI performance.

Medium
General
Improve bazelisk installation and script robustness

Improve the bazelisk installation script by adding set -e for robustness and
moving the binary to /usr/local/bin to make it available in the system PATH.

.github/workflows/main.yml [17-22]

 - name: Install bazelisk
   run: |
+    set -e
     curl -sSLo bazelisk-linux-amd64 "https://github.com/bazelbuild/bazelisk/releases/download/v1.1.0/bazelisk-linux-amd64"
-    mkdir -p "${GITHUB_WORKSPACE}/bin"
-    mv bazelisk-linux-amd64 "${GITHUB_WORKSPACE}/bin/bazel"
-    chmod +x "${GITHUB_WORKSPACE}/bin/bazel"
+    sudo mv bazelisk-linux-amd64 /usr/local/bin/bazel
+    sudo chmod +x /usr/local/bin/bazel
Suggestion importance[1-10]: 6

__

Why: The suggestion correctly improves the robustness of the installation script with set -e and enhances maintainability by installing the binary to a standard PATH directory, simplifying future commands.

Low
Imported GitHub PR comment. Original author: @qodo-code-review[bot] Original URL: https://github.com/carverauto/serviceradar/pull/1652#issuecomment-3316660368 Original created: 2025-09-22T03:42:28Z --- ## PR Code Suggestions ✨ <!-- c8e0030 --> Latest suggestions up to c8e0030 <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=2>Incremental <sup><a href='https://qodo-merge-docs.qodo.ai/core-abilities/incremental_update/'>[*]</a></sup></td> <td> <details><summary>Restore missing filegroup target</summary> ___ **Restore the <code>filegroup</code> named <code>openssl_src_runfiles_patch</code> in the <code>BUILD.bazel</code> file, <br>as it is referenced by this name in <code>MODULE.bazel</code> and its removal will cause a <br>build failure.** [third_party/rust_patches/BUILD.bazel [3]](https://github.com/carverauto/serviceradar/pull/1652/files#diff-b11e6fe1253aecdf8eb31089dfbad9c2a9cf0838e5f22b350611d1c595c0a060R3-R3) ```diff +filegroup( + name = "openssl_src_runfiles_patch", + srcs = ["openssl_src_runfiles_patch"], +) + exports_files(["openssl_src_runfiles_patch"]) ``` - [ ] **Apply / Chat** <!-- /improve --apply_suggestion=0 --> <details><summary>Suggestion importance[1-10]: 9</summary> __ Why: The suggestion correctly identifies that removing the `filegroup` target will break the build, as `MODULE.bazel` references it by its name, not just as a file. This is a critical fix to prevent build failures. </details></details></td><td align=center>High </td></tr><tr><td> <details><summary>Select correct macOS toolchain by arch<!-- not_implemented --></summary> ___ **Modify the toolchain selection logic for macOS to check <code>mctx.os.arch</code> and select <br>the appropriate toolchain for both <code>arm64</code> and <code>x86_64</code> architectures, preventing <br>build failures on Intel-based Macs.** [third_party/vendor/tools_opam/extensions/opam.bzl [107-116]](https://github.com/carverauto/serviceradar/pull/1652/files#diff-bda22f3d4ab343b060ce7002755e369a872b8f14a7b9968cf5750f511fcc8f97R107-R116) ```diff if mctx.os.name == "mac os x": - toolchain_flag = "@local_config_cc_toolchains//:cc-toolchain-darwin_arm64" + if mctx.os.arch in ("aarch64", "arm64"): + toolchain_flag = "@local_config_cc_toolchains//:cc-toolchain-darwin_arm64" + elif mctx.os.arch in ("x86_64", "amd64"): + toolchain_flag = "@local_config_cc_toolchains//:cc-toolchain-darwin_x86_64" elif mctx.os.name == "linux": if mctx.os.arch in ("x86_64", "amd64"): toolchain_flag = "@local_config_cc_toolchains//:cc-toolchain-k8" elif mctx.os.arch in ("aarch64", "aarch64_be"): toolchain_flag = "@local_config_cc_toolchains//:cc-toolchain-aarch64" if toolchain_flag: cmd.append("--extra_toolchains={}".format(toolchain_flag)) ``` - [ ] **Apply / Chat** <!-- /improve --apply_suggestion=1 --> <details><summary>Suggestion importance[1-10]: 8</summary> __ Why: The suggestion correctly points out that hardcoding the macOS toolchain to `arm64` will cause build failures on Intel-based macOS systems. Adding architecture detection makes the build process more robust and portable. </details></details></td><td align=center>Medium </td></tr><tr><td rowspan=1>General</td> <td> <details><summary>Handle missing HOME safely<!-- not_implemented --></summary> ___ **Safeguard against a missing <code>HOME</code> environment variable by providing a fallback <br>path to prevent potential runtime errors and non-hermetic writes.** [third_party/vendor/tools_opam/extensions/opam.bzl [122-130]](https://github.com/carverauto/serviceradar/pull/1652/files#diff-bda22f3d4ab343b060ce7002755e369a872b8f14a7b9968cf5750f511fcc8f97R122-R130) ```diff +home_dir = mctx.getenv("HOME") +cache_dir = (home_dir + "/.cache") if home_dir else mctx.paths.workspace + "/.cache" res = mctx.execute( cmd, environment = { - "HOME": mctx.getenv("HOME") + "/.cache", - "XDG_CACHE_HOME": mctx.getenv("HOME") + "/.cache", + "HOME": cache_dir if home_dir else mctx.paths.workspace + "/.cache", + "XDG_CACHE_HOME": cache_dir, "OBAZL_NO_BWRAP": "1", }, quiet = (verbosity < 1), ) ``` - [ ] **Apply / Chat** <!-- /improve --apply_suggestion=2 --> <details><summary>Suggestion importance[1-10]: 7</summary> __ Why: The suggestion correctly points out that `mctx.getenv("HOME")` can be `None`, which would cause a runtime error. Adding a fallback improves the robustness of the script in hermetic environments. </details></details></td><td align=center>Medium </td></tr> <tr><td align="center" colspan="2"> - [ ] Update <!-- /improve_multi --more_suggestions=true --> </td><td></td></tr></tbody></table> ___ #### Previous suggestions <details><summary>✅ Suggestions up to commit 22a5372</summary> <br><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 and improve CI workflow maintainability</summary> ___ **Improve the CI workflow's maintainability by using the <code>bazel-contrib/setup-bazel</code> <br>action instead of manually installing Bazelisk. Centralize the BuildBuddy API <br>key configuration by generating a <code>.bazelrc.remote</code> file from secrets rather than <br>passing it on each command line.** ### Examples: <details> <summary> <a href="https://github.com/carverauto/serviceradar/pull/1652/files#diff-7829468e86c1cc5d5133195b5cb48e1ff6c75e3e9203777f6b2e379d9e4882b3R17-R31">.github/workflows/main.yml [17-31]</a> </summary> ```yaml - name: Install bazelisk run: | curl -sSLo bazelisk-linux-amd64 "https://github.com/bazelbuild/bazelisk/releases/download/v1.1.0/bazelisk-linux-amd64" mkdir -p "${GITHUB_WORKSPACE}/bin" mv bazelisk-linux-amd64 "${GITHUB_WORKSPACE}/bin/bazel" chmod +x "${GITHUB_WORKSPACE}/bin/bazel" - name: Build env: BUILDBUDDY_ORG_API_KEY: ${{ secrets.BUILDBUDDY_ORG_API_KEY }} ... (clipped 5 lines) ``` </details> ### Solution Walkthrough: #### Before: ```yaml # in .github/workflows/main.yml jobs: build: steps: - name: Install bazelisk run: | curl -sSLo bazelisk-linux-amd64 ... mkdir -p "${GITHUB_WORKSPACE}/bin" mv bazelisk-linux-amd64 "${GITHUB_WORKSPACE}/bin/bazel" chmod +x "${GITHUB_WORKSPACE}/bin/bazel" - name: Build run: | "${GITHUB_WORKSPACE}/bin/bazel" build \ --config=ci \ --remote_header=x-buildbuddy-api-key=${BUILDBUDDY_ORG_API_KEY} \ //... ``` #### After: ```yaml # in .github/workflows/main.yml jobs: build: steps: - name: Install Bazel uses: bazel-contrib/setup-bazel@... - name: Configure Remote Build run: | echo "build --remote_header=x-buildbuddy-api-key=${{ secrets.BUILDBUDDY_ORG_API_KEY }}" >> .bazelrc.remote - name: Build run: bazel build --config=ci //... ``` <details><summary>Suggestion importance[1-10]: 8</summary> __ Why: The suggestion correctly identifies that manually installing Bazelisk and passing the API key on the command line is brittle; using a setup action and a `.bazelrc.remote` file is a more robust and maintainable approach for the CI workflow. </details></details></td><td align=center>Medium </td></tr><tr><td rowspan=1>Possible issue</td> <td> <details><summary>✅ <s>Avoid redundant builds in CI<!-- not_implemented --></s></summary> ___ <details><summary><b>Suggestion Impact:</b></summary>The separate "Build" step invoking `bazel build` was removed, leaving only the test step to handle the build via `bazel test`. code diff: ```diff - - name: Build - env: - BUILDBUDDY_ORG_API_KEY: ${{ secrets.BUILDBUDDY_ORG_API_KEY }} + - name: Install Bazel + uses: bazel-contrib/setup-bazel@v3 + with: + bazel-version-file: .bazelversion + + - name: Configure remote cache + if: ${{ secrets.BUILDBUDDY_ORG_API_KEY != '' }} run: | - "${GITHUB_WORKSPACE}/bin/bazel" build \ - --config=ci \ - --remote_header=x-buildbuddy-api-key=${BUILDBUDDY_ORG_API_KEY} \ - //... + cat <<EOF > .bazelrc.remote + common --remote_header=x-buildbuddy-api-key=${{ secrets.BUILDBUDDY_ORG_API_KEY }} + EOF - name: Test - env: - BUILDBUDDY_ORG_API_KEY: ${{ secrets.BUILDBUDDY_ORG_API_KEY }} run: | - "${GITHUB_WORKSPACE}/bin/bazel" test \ + bazel test \ --config=ci \ - --remote_header=x-buildbuddy-api-key=${BUILDBUDDY_ORG_API_KEY} \ //... ``` </details> ___ **Remove the redundant <code>Build</code> step from the CI workflow, as <code>bazel test</code> already <br>performs a build, which will make the CI process more efficient.** [.github/workflows/main.yml [24-40]](https://github.com/carverauto/serviceradar/pull/1652/files#diff-7829468e86c1cc5d5133195b5cb48e1ff6c75e3e9203777f6b2e379d9e4882b3R24-R40) ```diff -- name: Build - env: - BUILDBUDDY_ORG_API_KEY: ${{ secrets.BUILDBUDDY_ORG_API_KEY }} - run: | - "${GITHUB_WORKSPACE}/bin/bazel" build \ - --config=ci \ - --remote_header=x-buildbuddy-api-key=${BUILDBUDDY_ORG_API_KEY} \ - //... - - name: Test env: BUILDBUDDY_ORG_API_KEY: ${{ secrets.BUILDBUDDY_ORG_API_KEY }} run: | "${GITHUB_WORKSPACE}/bin/bazel" test \ --config=ci \ --remote_header=x-buildbuddy-api-key=${BUILDBUDDY_ORG_API_KEY} \ //... ``` <details><summary>Suggestion importance[1-10]: 7</summary> __ Why: The suggestion correctly points out that `bazel test` includes a build phase, making the separate `bazel build` step redundant and inefficient, even with caching. Removing it simplifies the workflow and improves CI performance. </details></details></td><td align=center>Medium </td></tr><tr><td rowspan=1>General</td> <td> <details><summary>Improve bazelisk installation and script robustness<!-- not_implemented --></summary> ___ **Improve the <code>bazelisk</code> installation script by adding <code>set -e</code> for robustness and <br>moving the binary to <code>/usr/local/bin</code> to make it available in the system <code>PATH</code>.** [.github/workflows/main.yml [17-22]](https://github.com/carverauto/serviceradar/pull/1652/files#diff-7829468e86c1cc5d5133195b5cb48e1ff6c75e3e9203777f6b2e379d9e4882b3R17-R22) ```diff - name: Install bazelisk run: | + set -e curl -sSLo bazelisk-linux-amd64 "https://github.com/bazelbuild/bazelisk/releases/download/v1.1.0/bazelisk-linux-amd64" - mkdir -p "${GITHUB_WORKSPACE}/bin" - mv bazelisk-linux-amd64 "${GITHUB_WORKSPACE}/bin/bazel" - chmod +x "${GITHUB_WORKSPACE}/bin/bazel" + sudo mv bazelisk-linux-amd64 /usr/local/bin/bazel + sudo chmod +x /usr/local/bin/bazel ``` <!-- /improve --apply_suggestion=2 --> <details><summary>Suggestion importance[1-10]: 6</summary> __ Why: The suggestion correctly improves the robustness of the installation script with `set -e` and enhances maintainability by installing the binary to a standard `PATH` directory, simplifying future commands. </details></details></td><td align=center>Low </td></tr> <tr><td align="center" colspan="2"> <!-- /improve_multi --more_suggestions=true --> </td><td></td></tr></tbody></table> </details>
qodo-code-review[bot] commented 2025-09-23 05:42:20 +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/1652#issuecomment-3322509213
Original created: 2025-09-23T05:42:20Z

CI Feedback 🧐

(Feedback updated until commit github.com/carverauto/serviceradar@4e0d86f6da)

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

Action: build

Failed stage: Test []

Failure summary:

Bazel analysis failed due to an opam toolchain setup error, which cascaded into no
buildable/testable targets:
- In external/tools_opam+/extensions/opam/opam_toolchain_xdg.bzl:242:17,
the module extension @@tools_opam+//extensions:opam.bzl%opam failed while creating the opam switch
5.1.0.
- The command ["/home/runner/.local/share/obazl/opam/2.3.0/bin/opam", "switch", "create",
"5.1.0", "5.1.0", "--root=/home/runner/.local/share/obazl/opam/2.3.0/root"] exited with rc=31.
-
Opam error while compiling ocaml-base-compiler.5.1.0
(~/.local/share/obazl/opam/2.3.0/root/5.1.0/.opam-switch/build/ocaml-base-compiler.5.1.0): bwrap:
loopback: Failed RTM_NEWADDR: Operation not permitted (likely sandbox/network namespace permission
issue on the GitHub runner).
- As a result, many Bazel targets reported "error evaluating module
extension @@tools_opam+//extensions:opam.bzl%opam" and were not analyzed.
- Bazel then reported "No
test targets were found, yet testing was requested" and the action exited with code 1.

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

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

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