gitea-test/Jenkinsfile

10 lines
164 B
Plaintext
Raw Permalink Normal View History

2023-08-31 02:28:14 +00:00
pipeline {
agent any
stages {
stage('stage 1'){
steps {
echo "Hello world"
}
}
}
}