Created
January 16, 2016 13:41
Revisions
-
gmacario created this gist
Jan 16, 2016 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,49 @@ <?xml version='1.0' encoding='UTF-8'?> <project> <actions/> <description></description> <keepDependencies>false</keepDependencies> <properties/> <scm class="hudson.plugins.git.GitSCM" plugin="git@2.4.1"> <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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,24 @@ <?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 "you@example.com" 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,43 @@ <?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="job-dsl@1.42"> <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>