mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-10 07:05:35 +00:00
11 lines
175 B
Groovy
11 lines
175 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Get coriolis-data') {
|
|
steps {
|
|
sh '''cd ..
|
|
git clone https://github.com/edcd/coriolis-data.git'''
|
|
}
|
|
}
|
|
}
|
|
} |