aboutsummaryrefslogtreecommitdiff
path: root/Jenkinsfile
diff options
context:
space:
mode:
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile22
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....'
+ }
+ }
+ }
+}