(for PR #29905)
2026-05-15 01:13.06: New job: test agentxm-example-tinyflags.0.1.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29905/head (0a9a9e446f8a18b3bae4e1f8506be6b7511fea3b)
on macos-homebrew-ocaml-4.14/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29905/head" && git reset --hard 0a9a9e44
git fetch origin master
git merge --no-edit adfd36b5d12830043a1f66dbf8d5a820e784fb8f
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM macos-homebrew-ocaml-4.14
USER 1000:1000
RUN ln -f ~/local/bin/opam-dev ~/local/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url -k local --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn agentxm-example-tinyflags.0.1.0 0.1.0
RUN opam reinstall agentxm-example-tinyflags.0.1.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"macos-homebrew\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'agentxm-example-tinyflags.0.1.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam reinstall --with-test agentxm-example-tinyflags.0.1.0) || true
RUN opam reinstall --with-test --verbose agentxm-example-tinyflags.0.1.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"macos-homebrew\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'agentxm-example-tinyflags.0.1.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-05-15 01:13.06: Using cache hint "macos-homebrew-ocaml-4.14-agentxm-example-tinyflags.0.1.0-0a9a9e446f8a18b3bae4e1f8506be6b7511fea3b"
2026-05-15 01:13.06: Using OBuilder spec:
((from macos-homebrew-ocaml-4.14)
(user (uid 1000) (gid 1000))
(run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
(run (network host)
(shell "opam init --reinit -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url -k local --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn agentxm-example-tinyflags.0.1.0 0.1.0"))
(run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
(network host)
(shell "opam reinstall agentxm-example-tinyflags.0.1.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"macos-homebrew\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'agentxm-example-tinyflags.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test agentxm-example-tinyflags.0.1.0) || true"))
(run (shell "opam reinstall --with-test --verbose agentxm-example-tinyflags.0.1.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"macos-homebrew\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'agentxm-example-tinyflags.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-05-15 01:13.06: Waiting for resource in pool OCluster
2026-05-15 01:13.06: Waiting for worker…
2026-05-15 01:15.52: Got resource from pool OCluster
Building on i7-worker-02
All commits already cached
Updating files: 34% (6148/17876)
Updating files: 35% (6257/17876)
Updating files: 36% (6436/17876)
Updating files: 37% (6615/17876)
Updating files: 38% (6793/17876)
Updating files: 39% (6972/17876)
Updating files: 40% (7151/17876)
Updating files: 41% (7330/17876)
Updating files: 42% (7508/17876)
Updating files: 43% (7687/17876)
Updating files: 44% (7866/17876)
Updating files: 45% (8045/17876)
Updating files: 46% (8223/17876)
Updating files: 47% (8402/17876)
Updating files: 48% (8581/17876)
Updating files: 49% (8760/17876)
Updating files: 50% (8938/17876)
Updating files: 51% (9117/17876)
Updating files: 52% (9296/17876)
Updating files: 53% (9475/17876)
Updating files: 54% (9654/17876)
Updating files: 55% (9832/17876)
Updating files: 56% (10011/17876)
Updating files: 57% (10190/17876)
Updating files: 58% (10369/17876)
Updating files: 59% (10547/17876)
Updating files: 59% (10688/17876)
Updating files: 60% (10726/17876)
Updating files: 61% (10905/17876)
Updating files: 62% (11084/17876)
Updating files: 63% (11262/17876)
Updating files: 64% (11441/17876)
Updating files: 65% (11620/17876)
Updating files: 66% (11799/17876)
Updating files: 67% (11977/17876)
Updating files: 68% (12156/17876)
Updating files: 69% (12335/17876)
Updating files: 70% (12514/17876)
Updating files: 71% (12692/17876)
Updating files: 72% (12871/17876)
Updating files: 73% (13050/17876)
Updating files: 74% (13229/17876)
Updating files: 75% (13407/17876)
Updating files: 76% (13586/17876)
Updating files: 77% (13765/17876)
Updating files: 78% (13944/17876)
Updating files: 79% (14123/17876)
Updating files: 80% (14301/17876)
Updating files: 81% (14480/17876)
Updating files: 82% (14659/17876)
Updating files: 83% (14838/17876)
Updating files: 84% (15016/17876)
Updating files: 85% (15195/17876)
Updating files: 86% (15374/17876)
Updating files: 87% (15553/17876)
Updating files: 88% (15731/17876)
Updating files: 88% (15902/17876)
Updating files: 89% (15910/17876)
Updating files: 90% (16089/17876)
Updating files: 91% (16268/17876)
Updating files: 92% (16446/17876)
Updating files: 93% (16625/17876)
Updating files: 94% (16804/17876)
Updating files: 95% (16983/17876)
Updating files: 96% (17161/17876)
Updating files: 97% (17340/17876)
Updating files: 98% (17519/17876)
Updating files: 99% (17698/17876)
Updating files: 100% (17876/17876)
Updating files: 100% (17876/17876), done.
HEAD is now at adfd36b5d1 Merge pull request #29901 from ajbt200128/opam-publish-pyro-caml-instruments.1.0.0
Updating adfd36b5d1..0a9a9e446f
Fast-forward
.../agentxm-example-tinyflags.0.1.0/opam | 32 ++++++++++++++++++++++
1 file changed, 32 insertions(+)
create mode 100644 packages/agentxm-example-tinyflags/agentxm-example-tinyflags.0.1.0/opam
(from macos-homebrew-ocaml-4.14)
2026-05-15 01:15.57 ---> using "0c60f117aee57abea8364cb033d47bb1d63ff0f68e5ee97378e032498e8442af" from cache
/: (user (uid 1000) (gid 1000))
/: (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
2026-05-15 01:15.58 ---> using "f20a31eccb94af52fa2a3ef86b723bc6460bac3d8a92b8861915540c2498d20a" from cache
/: (run (network host)
(shell "opam init --reinit -ni"))
No configuration file found, using built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /Users/mac1000/.opam from version 2.1 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 1 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=1 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///Users/mac1000/opam-repository
2026-05-15 01:15.58 ---> using "7818e224f85c11d1d318abe9ba4e297be345388b7ed476f912b6900c6bae56aa" from cache
/: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=macos os-distribution=homebrew os-version=15.5
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 11
# repositories 1 (version-controlled)
# pinned 0
# current-switch 4.14.2
# invariant ["ocaml-base-compiler" {= "4.14.2"} | "ocaml-system" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /Users/mac1000/.opam/4.14.2/lib/ocaml/stublibs:/Users/mac1000/.opam/4.14.2/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2026-05-15 01:15.58 ---> using "625776f8b2f728a128171e2ba4372c97abd18632a07574a8412026e8be39dac5" from cache
/: (env OPAMDOWNLOADJOBS 1)
/: (env OPAMERRLOGLEN 0)
/: (env OPAMPRECISETRACKING 1)
/: (env CI true)
/: (env OPAM_REPO_CI true)
/: (run (shell "rm -rf opam-repository/"))
2026-05-15 01:15.59 ---> using "15fbb76bf7dee5d6e8ae583230339015a61d8d2d8397de2cfe6459f8ba421f1e" from cache
/: (copy (src .) (dst opam-repository/))
2026-05-15 01:16.01 ---> using "1e55682ec857c2210929033831000d0f87d44855d97c9ec43027d5594b6e481f" from cache
/: (run (shell "opam repository set-url -k local --strict default opam-repository/"))
[default] Initialised
default (at file:///Users/mac1000/opam-repository):
[WARNING] opam is out-of-date. Please consider updating it (https://opam.ocaml.org/doc/Install.html)
default (at file:///Users/mac1000/opam-repository):
[INFO] opam 2.5.1 includes security fixes; please consider upgrading (https://opam.ocaml.org/doc/Install.html)
2026-05-15 01:16.01 ---> using "adc8cad915a7c3ac85f8fc4dcd2e1d6b56a728601997f9a48a3e5ae7b061c9f3" from cache
/: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/local/bin/brew "update"
- ==> Updating Homebrew...
- ==> Downloading https://ghcr.io/v2/homebrew/core/portable-ruby/blobs/sha256:f2bc4c3b081b09d7dcca97a8b8c5e102116e6ba68a5c118d6d961cf33b3162ec
- #=#=#
0.7%
# 1.5%
# 2.3%
## 3.1%
-
## 3.9%
### 5.0%
#### 5.8%
#### 6.6%
##### 7.5%
##### 8.3%
###### 9.1%
####### 9.9%
####### 10.7%
######## 11.6%
######## 12.3%
-
######### 12.9%
######### 13.8%
########## 14.6%
########### 15.4%
########### 16.3%
############ 17.1%
############# 18.1%
############# 18.8%
############# 19.2%
############## 19.7%
-
############## 20.1%
############## 20.5%
############### 20.9%
############### 21.4%
############### 21.8%
################ 22.2%
################ 22.6%
################ 23.1%
################ 23.5%
################# 23.9%
################# 24.5%
-
################# 24.9%
################## 25.3%
################## 25.8%
################## 26.2%
################### 26.6%
################### 27.0%
################### 27.4%
#################### 27.9%
#################### 28.3%
#################### 28.7%
#################### 29.1%
-
##################### 29.5%
##################### 30.0%
##################### 30.4%
###################### 30.8%
###################### 31.2%
###################### 31.6%
####################### 32.1%
####################### 32.5%
####################### 33.0%
######################## 33.4%
######################## 33.8%
-
######################## 34.2%
######################## 34.7%
######################### 35.2%
######################### 35.6%
######################### 36.0%
########################## 36.5%
########################## 36.9%
########################## 37.3%
########################### 37.7%
########################### 38.1%
########################### 38.5%
-
############################ 38.9%
############################ 39.4%
############################ 39.8%
############################ 40.2%
############################# 40.6%
############################# 41.1%
############################# 41.5%
############################## 41.9%
############################## 42.3%
############################## 42.9%
############################### 43.3%
-
############################### 43.7%
############################### 44.0%
################################ 44.6%
################################ 45.0%
################################ 45.4%
################################ 45.8%
################################# 46.2%
################################# 46.7%
################################# 47.1%
################################## 47.5%
################################## 47.9%
-
################################## 48.3%
################################### 48.8%
################################### 49.2%
################################### 49.6%
################################### 50.0%
#################################### 50.4%
#################################### 50.9%
#################################### 51.3%
##################################### 51.7%
##################################### 52.1%
-
##################################### 52.6%
###################################### 53.0%
###################################### 53.4%
###################################### 54.0%
####################################### 54.4%
####################################### 54.8%
####################################### 55.4%
######################################## 55.8%
######################################## 56.2%
######################################## 56.7%
-
######################################### 57.1%
######################################### 57.5%
######################################### 57.9%
########################################## 58.5%
########################################## 58.9%
########################################## 59.4%
########################################### 59.8%
########################################### 60.2%
########################################### 60.7%
########################################### 61.1%
############################################ 61.5%
-
############################################ 61.9%
############################################ 62.3%
############################################# 62.8%
############################################# 63.2%
############################################# 63.8%
############################################## 64.2%
############################################## 64.5%
############################################## 64.9%
############################################### 65.4%
############################################### 65.8%
############################################### 66.2%
-
############################################### 66.6%
################################################ 67.2%
################################################ 67.6%
################################################ 68.0%
################################################# 68.5%
################################################# 68.9%
################################################# 69.3%
################################################## 69.7%
################################################## 70.1%
################################################## 70.5%
################################################### 71.0%
-
################################################### 71.4%
################################################### 71.8%
#################################################### 72.3%
#################################################### 72.7%
#################################################### 73.1%
#################################################### 73.5%
##################################################### 74.1%
##################################################### 74.5%
##################################################### 75.0%
###################################################### 75.4%
-
###################################################### 76.0%
####################################################### 76.8%
####################################################### 77.6%
######################################################## 78.5%
######################################################### 79.3%
######################################################### 80.1%
########################################################## 81.0%
########################################################## 81.8%
########################################################### 82.6%
############################################################ 83.4%
############################################################ 84.4%
-
############################################################# 85.1%
############################################################# 85.9%
############################################################## 86.9%
############################################################### 87.7%
############################################################### 88.6%
################################################################ 89.0%
################################################################ 89.4%
################################################################ 89.8%
################################################################# 90.3%
################################################################# 90.7%
################################################################# 91.1%
-
################################################################# 91.5%
################################################################## 92.0%
################################################################## 92.4%
################################################################## 92.8%
################################################################### 93.2%
################################################################### 93.6%
################################################################### 94.0%
#################################################################### 94.6%
#################################################################### 95.0%
#################################################################### 95.5%
##################################################################### 95.9%
-
##################################################################### 96.3%
##################################################################### 96.7%
##################################################################### 97.1%
###################################################################### 97.6%
###################################################################### 98.0%
###################################################################### 98.5%
####################################################################### 98.9%
####################################################################### 99.5%
####################################################################### 99.9%
######################################################################## 100.0%
- ==> Pouring portable-ruby-4.0.3.catalina.bottle.tar.gz
- ==> Homebrew collects anonymous analytics.
- Read the analytics documentation (and how to opt-out) here:
- https://docs.brew.sh/Analytics
- No analytics have been recorded yet (nor will be during this `brew` run).
-
- ==> Homebrew is run entirely by unpaid volunteers. Please consider donating:
- https://github.com/Homebrew/brew#donations
-
- Already up-to-date.
2026-05-15 01:16.02 ---> using "213ccff3e9acc1e1524848b8eed00a27fd03e41dfa2b2200533bc63e269d8ebc" from cache
/: (run (shell "opam pin add -k version -yn agentxm-example-tinyflags.0.1.0 0.1.0"))
agentxm-example-tinyflags is now pinned to version 0.1.0
2026-05-15 01:16.02 ---> using "8b1121cc2d964d2202172682f53d40ebbb9e16f020dbfd5ce6968f871ac2dc6a" from cache
/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
(network host)
(shell "opam reinstall agentxm-example-tinyflags.0.1.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"macos-homebrew\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'agentxm-example-tinyflags.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
agentxm-example-tinyflags.0.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
- install agentxm-example-tinyflags 0.1.0 (pinned)
- install dune 3.23.0 [required by agentxm-example-tinyflags]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved agentxm-example-tinyflags.0.1.0 (https://github.com/agentxm/agentxm-example-tinyflags-ocaml/releases/download/v0.1.0/agentxm-example-tinyflags-0.1.0.tar.gz)
-> retrieved dune.3.23.0 (cached)
-> installed dune.3.23.0
-> installed agentxm-example-tinyflags.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-15 01:16.02 ---> using "41535c97c26f67eeb32bf497a2624e0afd97464511602e0baf3ef67ebf153378" from cache
/: (run (network host)
(shell "(opam reinstall --with-test agentxm-example-tinyflags.0.1.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile agentxm-example-tinyflags 0.1.0 (pinned)
=== install 11 packages
- install alcotest 1.9.1 [required by agentxm-example-tinyflags]
- install astring 0.8.5 [required by alcotest]
- install cmdliner 2.1.1 [required by alcotest]
- install fmt 0.11.0 [required by alcotest]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install ocamlbuild 0.16.1 [required by fmt, astring, uutf]
- install ocamlfind 1.9.8 [required by fmt, astring, uutf]
- install re 1.14.0 [required by alcotest]
- install stdlib-shims 0.3.0 [required by alcotest]
- install topkg 1.1.1 [required by fmt, astring, uutf]
- install uutf 1.0.4 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1 (https://github.com/mirage/alcotest/releases/download/1.9.1/alcotest-1.9.1.tbz)
-> retrieved astring.0.8.5 (https://erratique.ch/software/astring/releases/astring-0.8.5.tbz)
-> retrieved cmdliner.2.1.1 (https://erratique.ch/software/cmdliner/releases/cmdliner-2.1.1.tbz)
-> retrieved fmt.0.11.0 (https://erratique.ch/software/fmt/releases/fmt-0.11.0.tbz)
-> retrieved ocaml-syntax-shims.1.0.0 (https://github.com/ocaml-ppx/ocaml-syntax-shims/releases/download/1.0.0/ocaml-syntax-shims-1.0.0.tbz)
-> installed ocaml-syntax-shims.1.0.0
-> retrieved ocamlbuild.0.16.1 (https://github.com/ocaml/ocamlbuild/archive/refs/tags/0.16.1.tar.gz)
-> retrieved ocamlfind.1.9.8 (https://github.com/ocaml/ocamlfind/archive/refs/tags/findlib-1.9.8.tar.gz)
-> retrieved re.1.14.0 (https://github.com/ocaml/ocaml-re/archive/refs/tags/1.14.0.tar.gz)
-> retrieved stdlib-shims.0.3.0 (https://github.com/ocaml/stdlib-shims/releases/download/0.3.0/stdlib-shims-0.3.0.tbz)
-> installed stdlib-shims.0.3.0
-> retrieved topkg.1.1.1 (https://erratique.ch/software/topkg/releases/topkg-1.1.1.tbz)
-> retrieved uutf.1.0.4 (https://erratique.ch/software/uutf/releases/uutf-1.0.4.tbz)
-> installed re.1.14.0
-> installed cmdliner.2.1.1
-> installed ocamlfind.1.9.8
-> removed agentxm-example-tinyflags.0.1.0
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed alcotest.1.9.1
-> installed agentxm-example-tinyflags.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-15 01:16.34 ---> saved as "dafe759e3ce3cfe3aef298e042dc2224855f08b518b51567ce6e1e311de8973e"
/: (run (shell "opam reinstall --with-test --verbose agentxm-example-tinyflags.0.1.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"macos-homebrew\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'agentxm-example-tinyflags.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
- recompile agentxm-example-tinyflags 0.1.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [agentxm-example-tinyflags: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "agentxm-example-tinyflags" "-j" "11" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/agentxm-example-tinyflags.0.1.0)
Processing 2/4: [agentxm-example-tinyflags: dune runtest]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "agentxm-example-tinyflags" "-j" "11" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/agentxm-example-tinyflags.0.1.0)
- (cd _build/default/test && ./test_tinyflags.exe)
- Testing `tinyflags'.
- This run has ID `NUXOB02E'.
-
- [OK] boolean defaults 0 default returned.
- [OK] boolean defaults 1 implicit default false.
- [OK] boolean rollout 0 rollout 0 never flips.
- [OK] boolean rollout 1 rollout 100 always flips.
- [OK] boolean rollout 2 deterministic.
- [OK] boolean rollout 3 rejects out of range.
- [OK] variant defaults 0 default returned.
- [OK] variant defaults 1 first is implicit default.
- [OK] variant defaults 2 rollout 100% routes all.
- [OK] variant validation 0 rejects unknown default.
- [OK] variant validation 1 rejects unknown rollout key.
- [OK] variant validation 2 rejects rollout total > 100.
- [OK] variant validation 3 rejects duplicate variants.
- [OK] variant validation 4 rejects empty variants.
- [OK] dispatch and names 0 evaluate dispatches by kind.
- [OK] dispatch and names 1 unknown flag is error.
- [OK] dispatch and names 2 names sorted.
-
- Full test results in `~/.opam/4.14.2/.opam-switch/build/agentxm-example-tinyflags.0.1.0/_build/default/test/_build/_tests/tinyflags'.
- Test Successful in 0.003s. 17 tests run.
-> compiled agentxm-example-tinyflags.0.1.0
-> removed agentxm-example-tinyflags.0.1.0
-> installed agentxm-example-tinyflags.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-15 01:16.40 ---> saved as "de9aa0bcb128843edf151c713ae7394f8cb2ccea3827db6a159d7bc7c55b82cb"
Job succeeded
2026-05-15 01:16.54: Job succeeded