-
Type:
Suggestion
-
Resolution: Won't Fix
-
Component/s: Pipelines - Docker Run
Currently, the "cargo-tarpaulin" app no longer works with the pipeline.
The user suggest adding "ADDR_NO_RANDOMIZE" in Docker seccomp profiles to get it working again:
{
"names": [
"personality"
],
"action": "SCMP_ACT_ALLOW",
"args": [
{
"index": 0,
"value": 262144,
"valueTwo": 0,
"op": "SCMP_CMP_EQ"
}
],
"comment": "Enable personality(ADDR_NO_RANDOMIZE) syscall",
"includes": {},
"excludes": {}
}
Please review if it's possible to allow this in our current seccomp profiles.