diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2017-06-21 15:13:59 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2017-06-21 15:13:59 -0400 |
commit | 98b7d225d7d05b6f95d264b5abdfcce0ff844f1b (patch) | |
tree | 484c320479cf33e1de9a98ab0f06f4a2a5e17e9b | |
parent | c88d564b6106707566b2df9e5a63eb1a669f34d2 (diff) | |
download | hello_world-98b7d225d7d05b6f95d264b5abdfcce0ff844f1b.tar.gz |
test
-rw-r--r-- | Jenkinsfile | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index 2f06c55..b982250 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,3 +1,21 @@ -#!/bin/bash +pipeline { + agent any -python setup.py + stages { + stage('Build') { + steps { + echo 'Building..' + } + } + stage('Test') { + steps { + echo 'Testing..' + } + } + stage('Deploy') { + steps { + echo 'Deploying....' + } + } + } +} |