Aravind SV

Results 87 comments of Aravind SV

@marques-work Might be worth checking if this works: ``` curl -F 'files[]=@/abs/path/to/file1.gocd.yaml;filename=path/to/file1.gocd.yaml' url ```

I took a quick look at the code, and it looks like any pluggable SCM material should be able to use the post commit hook (but in a specific way)....

https://github.com/gocd/gocd/issues/8170 finished a few days ago and to be released in 20.9.0 might be relevant.

Agree. The report can be (much) better. Trying to read between the lines, it seems like this could be about being able to associate a single pipeline, with multiple environments,...

@caljnj Yes, if you feel like that's the first place you would try to look for help, then please submit a PR here: https://github.com/gocd/docs.go.cd/blob/master/content/faq/fixing_common_issues.md Out of curiosity, did you see...

An environment variable in GoCD is only created and is available at runtime (provided to a task), and not at configuration time. So, that won't be possible. At the time...

I know this is not exactly what you want, but I wonder if writing a [notification plugin](https://plugin-api.gocd.org/current/notifications/#notifications-interested-in) could be an option for you to consider. It should allow for more...

@arnzel Have you tried running your program with `-Dfaketime.offset.seconds`? Something like: ``` java -agentpath:/path/to/the/library/you/got/above \ -XX:+UnlockDiagnosticVMOptions \ -XX:DisableIntrinsic=_currentTimeMillis \ -XX:CompileCommand=exclude,java/lang/System.currentTimeMillis \ -Dfaketime.offset.seconds=86400 \ org.test.Main ```

I see. Yes, I can understand. Unfortunately, there is no other way. Of course, it's technically possible to change the code to make it read from a socket or even...

I haven't had a chance to take a look yet. @arnzel Feel free to try it out (build the PR) and see if it works. It'll help with the verification.