simonzkl
simonzkl
Understandable, if the implementation ends up adding too much complexity. Just wanted to get a sense if this is desired at the high level. I'll do a review of what's...
I did a quick grok through the code and the most obvious way that I could see this work is like this: - Tests are retried in the`Worker` itself immediately,...
Here's a quick PoC for what I mean: https://github.com/Orange-OpenSource/hurl/commit/fe02b6727b35d3c91e1e34caf0ff6006f80a28e8. I can finish/clean this up if the high-level approach is considered ok. Todo: - Add CLI flags - Update sequential runner...
Sounds like IFD is not allowed on FlakeHub (#69). Was IFD added somewhere since the last successful action run?
I think this should still exit with a non-zero code at the end of the recipe. How about `[defer-err]`/`[defer-error]`?
Indexing after a filter (e.g. `$.items[?(@.category == 'fruit')][0]`) is desparately needed. Dealing with `nth 0` is really awkward as you always need to think in terms of arrays, and certain...
For now I just ended up wrapping `cargo vendor` with a FOD like this: ```nix stdenvNoCC.mkDerivation { inherit name src; strictDeps = true; impureEnvVars = lib.fetchers.proxyImpureEnvVars ++ [ "SOME_AUTH_VAR" ];...
Yeah I came to the same conclusion experimenting with this. I think the correct thing might be to leave the header if the HTTP request version is < 2.0.
@grahamc I've seen this suggested as a solution a few times now. Could you elaborate what the difference is between the macOS pkg and the nix-installer and why this would...