go-cd

Discover why GoDC won't start on Mac

醉酒当歌 提交于 2019-12-25 20:02:11
问题 I'm trying to run GoCD on MacOS (10.12) for testing purposes. When I run both the server and the client apps, they do not provide any GUI output (they should show progress bars or a host configuration) and they quit a couple of seconds after starting. When I try to run the apps from Terminal as: /Applications/Go\ Server.app/Contents/MacOS/go-server I get the following output: Got directory: /Users/taatyyu1/Library/Application Support/Go Server [It exists] and then the app quits. How can I

GOCD pipeline, Selenium ChromeDriver window size is not set

时光毁灭记忆、已成空白 提交于 2019-12-24 20:52:43
问题 When setting the window size for chrome to either maximized or 1980x1080 using ChromeOptions.addArguments("--start-maximized"); or driver.manage().window().setSize(new Dimension(1980,1080)); or ChromeOptions.addArguments("window-size=1980,1080"); or ChromeOptions.addArguments("--window-size=1980,1080"); the Chrome window is set to the correct size and works perfectly when running the tests from either the terminal or running individual test cases from intellij (all tests Pass) However, when

GoCD run bash script on Pipeline

耗尽温柔 提交于 2019-12-11 14:26:07
问题 I got a pipeline called Funcional_Test, I'm trying to run on that pipeline a script located in this path: /home/vagrant/VirtualMachines/software_test.sh This is te configuration: When I run the pipeline I got these errors: Am I missing something? What can I do to fix the issue? 回答1: Mention /bin/sh in Command (change it depends on the script type) Mention the script file in Arguments section in same line 来源: https://stackoverflow.com/questions/54985984/gocd-run-bash-script-on-pipeline

How can I get a list of GAVs a maven package command will produce?

天涯浪子 提交于 2019-12-02 12:17:33
问题 I'm looking for a (supported) mvn based command, which will give me a list of all the GroupID:ArtifactID:Version (GAV) for all artifacts that running a mvn package command would produce. For a single module Maven project, with no parent pom, this is trivial: you can look inside the pom. For a single module Maven project, with a parent pom, you could use help:effective-pom and it will present a pom file with the <version> element present. For a multi module Maven project (reactor), you could

How can I get a list of GAVs a maven package command will produce?

夙愿已清 提交于 2019-12-02 04:38:01
I'm looking for a (supported) mvn based command, which will give me a list of all the GroupID:ArtifactID:Version (GAV) for all artifacts that running a mvn package command would produce. For a single module Maven project, with no parent pom, this is trivial: you can look inside the pom. For a single module Maven project, with a parent pom, you could use help:effective-pom and it will present a pom file with the <version> element present. For a multi module Maven project (reactor), you could actually do the same (didn't think so, learned so just now by trying it out). This will allow parsing