Commit 980a4373 authored by João Lino's avatar João Lino

Remove pipeline.

parent ff090ba2
Pipeline #5 failed with stages
pipeline {
def customImage
agent {
node {
node {
label 'docker'
}
}
options {
timeout(time: 1, unit: 'HOURS')
buildDiscarder(
logRotator(
numToKeepStr: '10',
artifactNumToKeepStr: '3'
)
)
ansiColor('xterm')
}
triggers {
cron('@weekly')
}
stages {
def customImage
stage('Clone repository') {
checkout scm
}
......@@ -39,5 +21,4 @@ pipeline {
customImage.push("latest")
}
}
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment