Intermittent "Command failed with error code: -11"
Two things make this worthy of a ticket.
- It has the exact error message
Command failed with error code: -11. - It only happens to GHC and Haddock.
The trouble is that nothing else immediately seems to connect the failures. See the full spread in the table below.
Good luck and sorry.
A count of jobs that failed, grouped by failed program and job name.
| ct | prg | jobname |
|---|---|---|
| 4 | haddock | x86_64-linux-deb10-int_native-validate |
| 3 | haddock | i386-linux-deb9-validate |
| 3 | haddock | x86_64-linux-alpine3_12-validate+fully_static |
| 3 | haddock | x86_64-linux-deb10-numa-slow-validate |
| 3 | haddock | x86_64-linux-deb10-unreg-validate |
| 3 | haddock | x86_64-linux-deb10-validate+debug_info |
| 3 | haddock | x86_64-windows-validate |
| 2 | ghc | i386-linux-deb9-validate |
| 2 | ghc | x86_64-linux-deb10-unreg-validate |
| 2 | haddock | aarch64-linux-deb10-validate |
| 2 | haddock | x86_64-linux-fedora33-release |
| 1 | ghc | nightly-x86_64-linux-deb10-int_native-validate |
| 1 | ghc | nightly-x86_64-linux-deb10-no_tntc-validate |
| 1 | ghc | nightly-x86_64-linux-deb10-unreg-validate |
| 1 | ghc | nightly-x86_64-linux-deb10-validate+llvm |
| 1 | ghc | x86_64-linux-alpine3_12-validate+fully_static |
| 1 | ghc | x86_64-linux-deb10-int_native-validate |
| 1 | ghc | x86_64-linux-deb10-validate+debug_info |
| 1 | ghc | x86_64-linux-deb11-cross_aarch64-linux-gnu-validate |
| 1 | ghc | x86_64-linux-deb11-int_native-cross_js-unknown-ghcjs-validate |
| 1 | ghc | x86_64-linux-deb11-validate+boot_nonmoving_gc |
| 1 | ghc | x86_64-linux-fedora33-release |
| 1 | ghc | x86_64-linux-ubuntu20_04-cross_wasm32-wasi-int_gmp-release |
| 1 | ghc | x86_64-linux-ubuntu20_04-cross_wasm32-wasi-int_native-release |
| 1 | haddock | aarch64-darwin-validate |
| 1 | haddock | x86_64-darwin-validate |
| 1 | haddock | x86_64-linux-fedora33-perf |
.mode markdown
.width 2 7 100
with
hadd as (
select rowid, 'haddock' 'name' from job_trace where trace match 'NEAR("Command line" "bin/haddock")'
union
select rowid, 'ghc' 'name' from job_trace where trace match 'NEAR("Command line" "bin/ghc")'
)
select count(job_id) ct, hadd.name prg, json->>'$.name' jobname
from job
left join hadd on job_id = hadd.rowid
where job_id in (
select rowid from job_trace where trace match '"Command failed with error code: -11"')
group by prg, jobname
order by ct desc
Full list of jobs that fail this way since May.
I will designate this a spurious failure and start retrying them.