Jean-Philippe Braun

Results 68 comments of Jean-Philippe Braun

go-gremlin/gremlin is just returning the json (as []bytes), it doesn't do any json unmarshal. I find it more practical because depending on the query results I can unmarshal them to...

Maybe what doesn't works for you in practice is when you have separate packages ? Ie: `#Secret` comes from a separate package. Because in this case hidden fields will not...

Using the go API, I'd love to have an option I can pass to `Value.Validate()` that will check that selectors are valid and point to some value (which may be...

> On a general note, I've re-read through the comments and still cannot understand why referencing something that doesn't exist doesn't throw an error. The evaluator is clearly aware of...

@myitcv it's quite complete. I know I miss some support for raw strings with multiple numbers of `#`. Probably some other small things I missed in the spec

> Not sure if this is a bug or a nuance of tasks which have no output fields they will fill. This is because the flow of custom commands is...

Using a local clone of `nixpkgs`: ```  skopeo --insecure-policy --debug inspect --tls-verify=false docker://localhost:3000/shell DEBU[0000] reference rewritten from 'localhost:3000/shell:latest' to 'localhost:3000/shell:latest' DEBU[0000] Trying to access "localhost:3000/shell:latest" DEBU[0000] Credentials not found...

Hi, thanks for the feedback 1. Actually I included only branches names since I wasn't able to build an image using a git tag. I didn't really look into it....

Ok I get why building git tags doesn't work. In the `Render` function of `GitSource`: ```go if commitRegex.MatchString(tag) { args["rev"] = tag } else { args["ref"] = tag } ```...

I've removed the dependency to `go-git`. I will have a look how we can fetch remote git repos before running the build when I have some time.