gitea-test/Jenkinsfile

10 lines
164 B
Groovy

pipeline {
agent any
stages {
stage('stage 1'){
steps {
echo "Hello world"
}
}
}
}