diff --git a/.cid/redis.yml b/.cid/redis.yml deleted file mode 100644 index ac952e3..0000000 --- a/.cid/redis.yml +++ /dev/null @@ -1,5 +0,0 @@ -pipeline: - build: - image: plugins/docker - commands: - - make diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..72d026d --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,11 @@ +pipeline { + agent any + + stages { + stage('Build') { + steps { + sh 'make' + } + } + } +}