Dustin N.
Dustin N.

Reputation: 795

Jenkins Pipeline without using Github on Windows

Can you use Jenkins Pipeline without using Github and in Windows? Everything I'm seeing leads me to believe the answer to that would be no, but I have been unable to find a definitive answer.

GOAL:

I'm wanting to run individual test.xml files in parallel and came across this plugin, however, I'm not so sure Pipeline will work for what I'm wanting.

Currently I just have one Mavaen Build per test.xml file.

clean install test -DsuiteXmlFile=RoundTrip.xml -DenvironmentParam="$ENVIRONMENTPARAM" -DbrowserParam="$BROWSERPARAM"

Upvotes: 0

Views: 131

Answers (1)

agg3l
agg3l

Reputation: 1444

Jenkins "Pipeline" is just another one plugin, providing DSL to write your build job logic. That's not a silver bullet anyhow.

I cannot think how it's related to Windows, and, especially, GitHub, it has nothing to do with it.

You can simply install Jenkins on your Windows box, then install pipeline plugin via Jenkins management UI (Manage Jenkins > Manage Plugins).

You'll be able to write required pipeline job script in place, without any SCM service engaged. Whether it will be OS-agnostic or not depends only on pipeline job code you write

Upvotes: 2

Related Questions