mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-01 00:41:20 +00:00
11 lines
164 B
Groovy
11 lines
164 B
Groovy
pipeline {
|
|
agent { dockerfile true }
|
|
stages {
|
|
stage('build') {
|
|
steps {
|
|
sh 'cargo build'
|
|
}
|
|
}
|
|
}
|
|
}
|