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