29 lines
1.2 KiB
XML
29 lines
1.2 KiB
XML
<?xml version='1.1' encoding='UTF-8'?>
|
|
<flow-definition plugin="workflow-job@1207.ve6191ff089f8">
|
|
<description></description>
|
|
<keepDependencies>false</keepDependencies>
|
|
<properties/>
|
|
<definition class="org.jenkinsci.plugins.workflow.cps.CpsFlowDefinition" plugin="workflow-cps@2759.v87459c4eea_ca_">
|
|
<script>// This shows a simple example of how to archive the build output artifacts.
|
|
node {
|
|
stage "Create build output"
|
|
|
|
// Make the output directory.
|
|
sh "mkdir -p output"
|
|
|
|
// Write an useful file, which is needed to be archived.
|
|
writeFile file: "output/usefulfile.txt", text: "This file is useful, need to archive it."
|
|
|
|
// Write an useless file, which is not needed to be archived.
|
|
writeFile file: "output/uselessfile.md", text: "This file is useless, no need to archive it."
|
|
|
|
stage "Archive build output"
|
|
|
|
// Archive the build output artifacts.
|
|
archiveArtifacts artifacts: 'output/*.txt', excludes: 'output/*.md'
|
|
}</script>
|
|
<sandbox>true</sandbox>
|
|
</definition>
|
|
<triggers/>
|
|
<disabled>false</disabled>
|
|
</flow-definition> |