Banst
Banst
Ok I do confirm by commenting out the Hardening part, I'm able to create a repo. I'll try to dichotomy my way in finding which settings causes the issue.
Ok found it, it's coming from the combination of an allow list and deny list on syscall filters: ```ini SystemCallFilter=@system-service SystemCallFilter=~@privileged @resources ``` From what I understand from the [doc](https://linux-audit.com/systemd/settings/units/systemcallfilter/),...
Sadly not
@pjbgf From what I recall, both
Oh sorry, thought I did put the command. I'm running `cue eval -e ts main.cue`, just for it to give me the output without trying to break the cycle (which...
I'll try to provide a reproducible example without leaking too much details, but basically yeah we do use export eventually. The configuration is humongous tho, this was a short example...
Thanks a lot! I'll work tomorrow on a reproducible example we can put on the unity project. It'll help me cutting the refactor down anyway.
Ok I think I can validate the behaviour with that example and export. Basically by adding `ts: timeSpan: end: 100.0` to break the cycle, both evalv2 and v3 show similar...
Hey, just for information I can reproduce the same error with `v0.11.0-alpha.4` and `evalv3`
Btw this can be somehow worked around for this use case by introducing bar as a forbidden field in the default value ```cue #Foo: { bar: int opt?: int }...