Files
bandwidth_probing/Jenkinsfile
T
brb 3d81eee094
pipeline / Test (push) Successful in 35s
added jenkinsfile
2023-07-26 12:09:01 +02:00

21 lines
355 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying..'
}
}
}
}