Update 'jenkinsfile'

This commit is contained in:
Mitchell Marino 2022-11-27 17:41:17 -06:00
parent 17c794b519
commit 5015355fe0

View File

@ -1,17 +1,21 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'cargo build'
}
}
agent any
stage('Test') {
steps {
sh 'cargo test'
}
stages {
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}
}