diff --git a/jenkinsfile b/jenkinsfile new file mode 100644 index 0000000..67c6748 --- /dev/null +++ b/jenkinsfile @@ -0,0 +1,17 @@ +pipeline { + agent any + stages { + stage('Build') { + steps { + sh 'cargo build' + } + } + + stage('Test') { + steps { + sh 'cargo test' + } + } + + } +}