diff --git a/README.md b/README.md new file mode 100644 index 0000000..4d17f47 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# caesar-cipher diff --git a/jenkinsfile b/jenkinsfile new file mode 100644 index 0000000..59a2e9c --- /dev/null +++ b/jenkinsfile @@ -0,0 +1,19 @@ +pipeline { + agent any + stages { + stage('Build') { + steps { + echo 'Building..' + } + } + stage('Test') { + steps { + echo 'Testing' + } + stage('Deploy') { + steps { + echo 'Deploying...' + } + + } + }