Created
January 16, 2016 13:41
-
-
Save gmacario/064e2ebbe3ff65fd9a98 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version='1.0' encoding='UTF-8'?> | |
<project> | |
<actions/> | |
<description></description> | |
<keepDependencies>false</keepDependencies> | |
<properties/> | |
<scm class="hudson.plugins.git.GitSCM" plugin="[email protected]"> | |
<configVersion>2</configVersion> | |
<userRemoteConfigs> | |
<hudson.plugins.git.UserRemoteConfig> | |
<url>https://github.com/gmacario/genivi-demo-platform</url> | |
</hudson.plugins.git.UserRemoteConfig> | |
</userRemoteConfigs> | |
<branches> | |
<hudson.plugins.git.BranchSpec> | |
<name>qemux86-64</name> | |
</hudson.plugins.git.BranchSpec> | |
</branches> | |
<doGenerateSubmoduleConfigurations>false</doGenerateSubmoduleConfigurations> | |
<submoduleCfg class="list"/> | |
<extensions> | |
<hudson.plugins.git.extensions.impl.PerBuildTag/> | |
</extensions> | |
</scm> | |
<assignedNode>yocto</assignedNode> | |
<canRoam>false</canRoam> | |
<disabled>false</disabled> | |
<blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding> | |
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding> | |
<triggers/> | |
<concurrentBuild>false</concurrentBuild> | |
<builders> | |
<hudson.tasks.Shell> | |
<command>id</command> | |
</hudson.tasks.Shell> | |
<hudson.tasks.Shell> | |
<command>printenv</command> | |
</hudson.tasks.Shell> | |
<hudson.tasks.Shell> | |
<command>ps axf</command> | |
</hudson.tasks.Shell> | |
<hudson.tasks.Shell> | |
<command>bash -xec "source init.sh && bitbake genivi-demo-platform"</command> | |
</hudson.tasks.Shell> | |
</builders> | |
<publishers/> | |
<buildWrappers/> | |
</project> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version='1.0' encoding='UTF-8'?> | |
<project> | |
<actions/> | |
<description></description> | |
<keepDependencies>false</keepDependencies> | |
<properties/> | |
<scm class="hudson.scm.NullSCM"/> | |
<assignedNode>yocto</assignedNode> | |
<canRoam>false</canRoam> | |
<disabled>true</disabled> | |
<blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding> | |
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding> | |
<triggers/> | |
<concurrentBuild>false</concurrentBuild> | |
<builders> | |
<hudson.tasks.Shell> | |
<command>git config --global user.email "[email protected]" | |
git config --global user.name "Your Name"</command> | |
</hudson.tasks.Shell> | |
</builders> | |
<publishers/> | |
<buildWrappers/> | |
</project> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version='1.0' encoding='UTF-8'?> | |
<project> | |
<actions/> | |
<description></description> | |
<keepDependencies>false</keepDependencies> | |
<properties/> | |
<scm class="hudson.scm.NullSCM"/> | |
<canRoam>true</canRoam> | |
<disabled>false</disabled> | |
<blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding> | |
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding> | |
<triggers/> | |
<concurrentBuild>false</concurrentBuild> | |
<builders> | |
<javaposse.jobdsl.plugin.ExecuteDslScripts plugin="[email protected]"> | |
<scriptText>def gitUrl = "https://github.com/gmacario/genivi-demo-platform" | |
def gitBranch = "qemux86-64" | |
job('compile-gdp') { | |
scm { | |
git(gitUrl, gitBranch) { | |
// TODO | |
} | |
} | |
steps { | |
shell "id" | |
shell "printenv" | |
shell "ps axf" | |
shell "bash -xec \"source init.sh && bitbake genivi-demo-platform\"" | |
} | |
}</scriptText> | |
<usingScriptText>true</usingScriptText> | |
<ignoreExisting>false</ignoreExisting> | |
<removedJobAction>IGNORE</removedJobAction> | |
<removedViewAction>IGNORE</removedViewAction> | |
<lookupStrategy>JENKINS_ROOT</lookupStrategy> | |
<additionalClasspath></additionalClasspath> | |
</javaposse.jobdsl.plugin.ExecuteDslScripts> | |
</builders> | |
<publishers/> | |
<buildWrappers/> | |
</project> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment