├── .gitignore ├── Jenkinsfile ├── README.md ├── app.py ├── pipeline.yaml ├── requirements.txt └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimtheory/jenkins-pipeline-best-practices/HEAD/.gitignore -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimtheory/jenkins-pipeline-best-practices/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimtheory/jenkins-pipeline-best-practices/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimtheory/jenkins-pipeline-best-practices/HEAD/app.py -------------------------------------------------------------------------------- /pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimtheory/jenkins-pipeline-best-practices/HEAD/pipeline.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimtheory/jenkins-pipeline-best-practices/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimtheory/jenkins-pipeline-best-practices/HEAD/test.py --------------------------------------------------------------------------------