mirror of
https://github.com/davidallendj/gdpm.git
synced 2025-12-20 03:27:02 -07:00
- Reinitialized submodules - Slightly restructed project - Added more options to `compile.sh` script - Added more utility functions
21 lines
No EOL
216 B
Groovy
21 lines
No EOL
216 B
Groovy
pipeline{
|
|
agent any
|
|
|
|
stages {
|
|
stage('Build'){
|
|
steps{
|
|
echo 'Building...'
|
|
}
|
|
}
|
|
stage('Test'){
|
|
steps{
|
|
echo 'Testing...'
|
|
}
|
|
}
|
|
stage('Deploy'){
|
|
steps{
|
|
echo 'Deploying...'
|
|
}
|
|
}
|
|
}
|
|
} |