- github
- ocaml
- opam-repository
- c40834
- distributions,alpine-3.21-ocaml-5.3,tiny_httpd.0.18,tests
(not at the head of any monitored branch or PR)
2025-04-11 19:08.41: New job: test tiny_httpd.0.18, using opam 2.3
from https://github.com/ocaml/opam-repository.git#refs/pull/27745/head (c408348fb2a7fd2c69e3ca675f58bf917499c853)
on alpine-3.21-ocaml-5.3/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/27745/head" && git reset --hard c408348f
git fetch origin master
git merge --no-edit 34a3fc46c301a891122df75c17fef6b5358bd68f
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:alpine-3.21-ocaml-5.3@sha256:e2ee63eda00d030de85e2df8292477e3b768ff41108d47f21b9146fd8250d962
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.3 /usr/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 --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn tiny_httpd.0.18 0.18
RUN opam reinstall tiny_httpd.0.18; \
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 "\"alpine-3.21\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'tiny_httpd.0.18' && 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 tiny_httpd.0.18) || true
RUN opam reinstall --with-test --verbose tiny_httpd.0.18; \
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 "\"alpine-3.21\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'tiny_httpd.0.18' && 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 .
2025-04-11 19:08.41: Using cache hint "ocaml/opam:alpine-3.21-ocaml-5.3@sha256:e2ee63eda00d030de85e2df8292477e3b768ff41108d47f21b9146fd8250d962-tiny_httpd.0.18-c408348fb2a7fd2c69e3ca675f58bf917499c853"
2025-04-11 19:08.41: Using OBuilder spec:
((from ocaml/opam:alpine-3.21-ocaml-5.3@sha256:e2ee63eda00d030de85e2df8292477e3b768ff41108d47f21b9146fd8250d962)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -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 --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn tiny_httpd.0.18 0.18"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall tiny_httpd.0.18;\
\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 \"\\\"alpine-3.21\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'tiny_httpd.0.18' && 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 tiny_httpd.0.18) || true"))
(run (shell "opam reinstall --with-test --verbose tiny_httpd.0.18;\
\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 \"\\\"alpine-3.21\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'tiny_httpd.0.18' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-04-11 19:08.41: Waiting for resource in pool OCluster
2025-04-11 19:08.42: Waiting for worker…
2025-04-11 19:10.07: Got resource from pool OCluster
Building on x86-bm-c6.sw.ocaml.org
All commits already cached
Updating files: 81% (18640/22854)
Updating files: 82% (18741/22854)
Updating files: 83% (18969/22854)
Updating files: 84% (19198/22854)
Updating files: 85% (19426/22854)
Updating files: 86% (19655/22854)
Updating files: 87% (19883/22854)
Updating files: 88% (20112/22854)
Updating files: 89% (20341/22854)
Updating files: 90% (20569/22854)
Updating files: 91% (20798/22854)
Updating files: 92% (21026/22854)
Updating files: 93% (21255/22854)
Updating files: 94% (21483/22854)
Updating files: 95% (21712/22854)
Updating files: 96% (21940/22854)
Updating files: 97% (22169/22854)
Updating files: 98% (22397/22854)
Updating files: 99% (22626/22854)
Updating files: 100% (22854/22854)
Updating files: 100% (22854/22854), done.
HEAD is now at 34a3fc46c3 Merge pull request #27736 from Leonidas-from-XIV/core-unix-glibc
Updating 34a3fc46c3..c408348fb2
Fast-forward
packages/tiny_httpd/tiny_httpd.0.18/opam | 53 ++++++++++++++++++++++
.../tiny_httpd_camlzip.0.18/opam | 39 ++++++++++++++++
2 files changed, 92 insertions(+)
create mode 100644 packages/tiny_httpd/tiny_httpd.0.18/opam
create mode 100644 packages/tiny_httpd_camlzip/tiny_httpd_camlzip.0.18/opam
(from ocaml/opam:alpine-3.21-ocaml-5.3@sha256:e2ee63eda00d030de85e2df8292477e3b768ff41108d47f21b9146fd8250d962)
Unable to find image 'ocaml/opam:alpine-3.21-ocaml-5.3@sha256:e2ee63eda00d030de85e2df8292477e3b768ff41108d47f21b9146fd8250d962' locally
docker.io/ocaml/opam@sha256:e2ee63eda00d030de85e2df8292477e3b768ff41108d47f21b9146fd8250d962: Pulling from ocaml/opam
e263ec8ed069: Pulling fs layer
e263ec8ed069: Verifying Checksum
e263ec8ed069: Download complete
e263ec8ed069: Pull complete
Digest: sha256:e2ee63eda00d030de85e2df8292477e3b768ff41108d47f21b9146fd8250d962
Status: Downloaded newer image for ocaml/opam@sha256:e2ee63eda00d030de85e2df8292477e3b768ff41108d47f21b9146fd8250d962
2025-04-11 19:10.10 ---> using "f154ab12a6d575cd956c81477efd0302c0ef4dccea7e9c1952fd02140b057756" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2025-04-11 19:10.10 ---> using "74f582301298a4d2f008d4f2f9618af0d330cf3e8f4ad9522e6d930a160540a8" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from 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 development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 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 255 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=255 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-04-11 19:10.10 ---> using "901f76f475d2502ca575264485a8e6f6987c4200ee1953f2a13be9ffa9738843" from cache
/home/opam: (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.3.0 (35acd0c5abc5e66cdbd5be16ba77aa6c33a4c724)
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=alpine os-version=3.21.3
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 31
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.3
# invariant ["ocaml-base-compiler" {>= "5.3.0"}]
# compiler-packages ocaml-base-compiler.5.3.0, ocaml-compiler.5.3.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.3/lib/ocaml/stublibs:/home/opam/.opam/5.3/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.3.0
2025-04-11 19:10.10 ---> using "c89305ea03a99d07a5f73bead2fd1fe2a5756ca7a9b6c7591ab9349efd3a9516" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2025-04-11 19:10.10 ---> using "01400a2cb50eee5065b21765f9c613c5838113bab8abb8eeeb590ad424ef9384" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-04-11 19:10.12 ---> using "f0e044e32e3fe1e2914a54d09b07d04fd836ca190d1cc2b75f4dd544b1545c7c" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-04-11 19:10.36 ---> saved as "3dabe930c082c095939f8df9a424f2ff9e6109e385f6df9ed42e94c9ad801559"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apk" "update"
- fetch https://dl-cdn.alpinelinux.org/alpine/v3.21/main/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/v3.21/community/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/edge/testing/x86_64/APKINDEX.tar.gz
- v3.21.3-305-gf53b3a2c730 [https://dl-cdn.alpinelinux.org/alpine/v3.21/main]
- v3.21.3-306-g591e6485dc1 [https://dl-cdn.alpinelinux.org/alpine/v3.21/community]
- v20250108-5573-g68862eb01f0 [https://dl-cdn.alpinelinux.org/alpine/edge/main]
- v20250108-5569-ga95aaf6abbc [https://dl-cdn.alpinelinux.org/alpine/edge/community]
- v20250108-5569-ga95aaf6abbc [https://dl-cdn.alpinelinux.org/alpine/edge/testing]
- OK: 57607 distinct packages available
2025-04-11 19:10.37 ---> saved as "c94820d00796bf6078cdb20a46825b31698068059e0bf671835b2dc4b3b3a583"
/home/opam: (run (shell "opam pin add -k version -yn tiny_httpd.0.18 0.18"))
tiny_httpd is now pinned to version 0.18
2025-04-11 19:10.38 ---> saved as "5714d8b70ca892894b8d8053f0e4030f490aff9514bc307789dcbd3d4ad1cdd1"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall tiny_httpd.0.18;\
\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 \"\\\"alpine-3.21\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'tiny_httpd.0.18' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
tiny_httpd.0.18 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 9 packages
- install dune 3.18.0 [required by tiny_httpd]
- install hmap 0.8.1 [required by tiny_httpd]
- install iostream 0.3 [required by tiny_httpd]
- install ocamlbuild 0.16.1 [required by hmap]
- install ocamlfind 1.9.8 [required by hmap]
- install result 1.5 [required by tiny_httpd]
- install seq base [required by tiny_httpd]
- install tiny_httpd 0.18 (pinned)
- install topkg 1.0.8 [required by hmap]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.18.0 (cached)
-> retrieved hmap.0.8.1 (cached)
-> retrieved iostream.0.3 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved result.1.5 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved tiny_httpd.0.18 (cached)
-> retrieved topkg.1.0.8 (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.0.8
-> installed hmap.0.8.1
-> installed dune.3.18.0
-> installed result.1.5
-> installed iostream.0.3
-> installed tiny_httpd.0.18
Done.
# To update the current shell environment, run: eval $(opam env)
2025-04-11 19:11.20 ---> saved as "511b299fcb0f327aca9f6a3caa31ef4d8b1e16d8cbaa12b789d3a2d32a991974"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test tiny_httpd.0.18) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile tiny_httpd 0.18 (pinned)
=== install 4 packages
- install conf-libcurl 2 [required by tiny_httpd]
- install logs 0.8.0 [required by tiny_httpd]
- install ptime 1.2.0 [required by tiny_httpd]
- install qcheck-core 0.25 [required by tiny_httpd]
The following system packages will first need to be installed:
curl-dev
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apk to install them (may need root/sudo access)
2. Display the recommended apk command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "apk" "add" "curl-dev"
- (1/12) Upgrading c-ares (1.34.3-r0 -> 1.34.5-r0)
- (2/12) Installing brotli (1.1.0-r2)
- (3/12) Installing brotli-dev (1.1.0-r2)
- (4/12) Installing c-ares-dev (1.34.5-r0)
- (5/12) Installing libidn2-dev (2.3.7-r0)
- (6/12) Installing libpsl-utils (0.21.5-r3)
- (7/12) Installing libpsl-dev (0.21.5-r3)
- (8/12) Installing nghttp2-dev (1.64.0-r0)
- (9/12) Installing openssl-dev (3.3.3-r0)
- (10/12) Installing zlib-dev (1.3.1-r2)
- (11/12) Installing zstd-dev (1.5.6-r2)
- (12/12) Installing curl-dev (8.12.1-r1)
- Executing busybox-1.37.0-r12.trigger
- OK: 311 MiB in 113 packages
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed conf-libcurl.2
-> retrieved logs.0.8.0 (https://erratique.ch/software/logs/releases/logs-0.8.0.tbz)
-> retrieved ptime.1.2.0 (https://erratique.ch/software/ptime/releases/ptime-1.2.0.tbz)
-> retrieved qcheck-core.0.25 (https://github.com/c-cube/qcheck/archive/v0.25.tar.gz)
-> installed logs.0.8.0
-> installed ptime.1.2.0
-> removed tiny_httpd.0.18
-> installed qcheck-core.0.25
-> installed tiny_httpd.0.18
Done.
# To update the current shell environment, run: eval $(opam env)
2025-04-11 19:11.35 ---> saved as "5e44cda04ec757ae22a9c7b4384668e1c434f5a4dcb0404e028ade678dace67b"
/home/opam: (run (shell "opam reinstall --with-test --verbose tiny_httpd.0.18;\
\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 \"\\\"alpine-3.21\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'tiny_httpd.0.18' && 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 tiny_httpd 0.18 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [tiny_httpd: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "tiny_httpd" "-j" "31" "@install" "@runtest" (CWD=/home/opam/.opam/5.3/.opam-switch/build/tiny_httpd.0.18)
- (cd _build/default/tests && /bin/bash -e -u -o pipefail -c 'dd if=/dev/zero of=foo_50 bs=1M count=50')
- 50+0 records in
- 50+0 records out
- 52428800 bytes (52 MB, 50 MiB) copied, 0.0245431 s, 2.1 GB/s
- (cd _build/default/tests/unit && ./t_util.exe)
- random seed: 47184463
- ================================================================================
- success (ran 2 tests)
- (cd _build/default/tests/unit/ws && ./t_ws_q.exe)
- random seed: 202521166
- ================================================================================
- success (ran 1 tests)
- (cd _build/default/tests && ./sse_count.sh ../examples/sse_server.exe) > _build/default/tests/sse_count.out
- % Total % Received % Xferd Average Speed Time Time Time Current
- Dload Upload Total Spent Left Speed
-
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
100 100 0 100 0 0 99 0 --:--:-- 0:00:01 --:--:-- 99
100 100 0 100 0 0 90 0 --:--:-- 0:00:01 --:--:-- 90
- (cd _build/default/tests && ./upload_chunked.sh ../src/bin/http_of_dir.exe) > _build/default/tests/upload-out
- % Total % Received % Xferd Average Speed Time Time Time Current
- Dload Upload Total Spent Left Speed
-
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
100 50.0M 100 17 0 50.0M 216 637M --:--:-- --:--:-- --:--:-- 641M
- (cd _build/default/tests && ./download_chunked.sh ../src/bin/http_of_dir.exe) > _build/default/tests/dl-out
- download1
- % Total % Received % Xferd Average Speed Time Time Time Current
- Dload Upload Total Spent Left Speed
-
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
100 20.0M 0 20.0M 0 0 300M 0 --:--:-- --:--:-- --:--:-- 298M
100 50.0M 0 50.0M 0 0 324M 0 --:--:-- --:--:-- --:--:-- 322M
- download2
- % Total % Received % Xferd Average Speed Time Time Time Current
- Dload Upload Total Spent Left Speed
-
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
100 50.0M 0 50.0M 0 0 330M 0 --:--:-- --:--:-- --:--:-- 331M
- download3
- % Total % Received % Xferd Average Speed Time Time Time Current
- Dload Upload Total Spent Left Speed
-
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
100 50.0M 0 50.0M 0 0 337M 0 --:--:-- --:--:-- --:--:-- 337M
-> compiled tiny_httpd.0.18
-> removed tiny_httpd.0.18
-> installed tiny_httpd.0.18
Done.
# To update the current shell environment, run: eval $(opam env)
2025-04-11 19:11.47 ---> saved as "83a17452accf92ee206ffdfb089dc4233644e7548a2a5abf1dec6f0028e14add"
Job succeeded
2025-04-11 19:11.57: Job succeeded