mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-17 03:42:46 +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'
|
|
}
|
|
}
|
|
}
|
|
}
|