Add a simple Jankyfile for testing

This commit is contained in:
R Tyler Croy 2023-01-28 19:39:42 -08:00
parent 05fb2d5889
commit 6c9f7ab491
No known key found for this signature in database
GPG Key ID: E5C92681BEF6CEA2
1 changed files with 19 additions and 0 deletions

19
Jankyfile Normal file
View File

@ -0,0 +1,19 @@
/*
* This is a simple Jankyfile for self-hosting Janky
*/
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'cargo build'
}
}
stage('Test') {
steps {
sh 'cargo test test'
}
}
}
}