Add a simple Jenkinsfile

This commit is contained in:
R Tyler Croy 2024-04-21 15:31:36 +00:00
parent a5c501665e
commit 4b41913480
1 changed files with 24 additions and 0 deletions

24
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,24 @@
/*
* This Jenkinsfile is for internal use
*/
pipeline {
agent {
label 'rust'
}
stages {
stage('Checkout') {
checkout scm
}
stage('Build') {
sh 'cargo build'
}
stage('Test') {
sh 'cargo test'
}
}
}
// vim: ft=groovy sw=2 ts=2 et