├── .gitattributes ├── README.rst ├── pipeline-scripts ├── README.rst ├── example1 │ ├── README.rst │ ├── new.Jenkinsfile │ └── old.Jenkinsfile ├── example2 │ ├── README.rst │ ├── new.Jenkinsfile │ └── old.Jenkinsfile ├── example3 │ ├── README.rst │ ├── new.Jenkinsfile │ └── old.Jenkinsfile ├── example4 │ ├── README.rst │ ├── new.Jenkinsfile │ └── old.Jenkinsfile ├── example5 │ ├── README.rst │ ├── new.Jenkinsfile │ └── old.Jenkinsfile └── example6 │ └── new.Jenkinsfile ├── src └── org │ └── example │ └── Constants.groovy └── vars ├── example1.groovy ├── example2.groovy ├── example3.groovy ├── example4.groovy ├── example5.groovy └── example6.groovy /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/jenkins-shared-library-examples/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/jenkins-shared-library-examples/HEAD/README.rst -------------------------------------------------------------------------------- /pipeline-scripts/README.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pipeline-scripts/example1/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/jenkins-shared-library-examples/HEAD/pipeline-scripts/example1/README.rst -------------------------------------------------------------------------------- /pipeline-scripts/example1/new.Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/jenkins-shared-library-examples/HEAD/pipeline-scripts/example1/new.Jenkinsfile -------------------------------------------------------------------------------- /pipeline-scripts/example1/old.Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/jenkins-shared-library-examples/HEAD/pipeline-scripts/example1/old.Jenkinsfile -------------------------------------------------------------------------------- /pipeline-scripts/example2/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/jenkins-shared-library-examples/HEAD/pipeline-scripts/example2/README.rst -------------------------------------------------------------------------------- /pipeline-scripts/example2/new.Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/jenkins-shared-library-examples/HEAD/pipeline-scripts/example2/new.Jenkinsfile -------------------------------------------------------------------------------- /pipeline-scripts/example2/old.Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/jenkins-shared-library-examples/HEAD/pipeline-scripts/example2/old.Jenkinsfile -------------------------------------------------------------------------------- /pipeline-scripts/example3/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/jenkins-shared-library-examples/HEAD/pipeline-scripts/example3/README.rst -------------------------------------------------------------------------------- /pipeline-scripts/example3/new.Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/jenkins-shared-library-examples/HEAD/pipeline-scripts/example3/new.Jenkinsfile -------------------------------------------------------------------------------- /pipeline-scripts/example3/old.Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/jenkins-shared-library-examples/HEAD/pipeline-scripts/example3/old.Jenkinsfile -------------------------------------------------------------------------------- /pipeline-scripts/example4/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/jenkins-shared-library-examples/HEAD/pipeline-scripts/example4/README.rst -------------------------------------------------------------------------------- /pipeline-scripts/example4/new.Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/jenkins-shared-library-examples/HEAD/pipeline-scripts/example4/new.Jenkinsfile -------------------------------------------------------------------------------- /pipeline-scripts/example4/old.Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/jenkins-shared-library-examples/HEAD/pipeline-scripts/example4/old.Jenkinsfile -------------------------------------------------------------------------------- /pipeline-scripts/example5/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/jenkins-shared-library-examples/HEAD/pipeline-scripts/example5/README.rst -------------------------------------------------------------------------------- /pipeline-scripts/example5/new.Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/jenkins-shared-library-examples/HEAD/pipeline-scripts/example5/new.Jenkinsfile -------------------------------------------------------------------------------- /pipeline-scripts/example5/old.Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/jenkins-shared-library-examples/HEAD/pipeline-scripts/example5/old.Jenkinsfile -------------------------------------------------------------------------------- /pipeline-scripts/example6/new.Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/jenkins-shared-library-examples/HEAD/pipeline-scripts/example6/new.Jenkinsfile -------------------------------------------------------------------------------- /src/org/example/Constants.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/jenkins-shared-library-examples/HEAD/src/org/example/Constants.groovy -------------------------------------------------------------------------------- /vars/example1.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/jenkins-shared-library-examples/HEAD/vars/example1.groovy -------------------------------------------------------------------------------- /vars/example2.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/jenkins-shared-library-examples/HEAD/vars/example2.groovy -------------------------------------------------------------------------------- /vars/example3.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/jenkins-shared-library-examples/HEAD/vars/example3.groovy -------------------------------------------------------------------------------- /vars/example4.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/jenkins-shared-library-examples/HEAD/vars/example4.groovy -------------------------------------------------------------------------------- /vars/example5.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/jenkins-shared-library-examples/HEAD/vars/example5.groovy -------------------------------------------------------------------------------- /vars/example6.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/jenkins-shared-library-examples/HEAD/vars/example6.groovy --------------------------------------------------------------------------------