Delete 'Jenkinsfile'

This commit is contained in:
Mitchell Marino 2022-12-15 17:01:36 -06:00
parent f089e30b0a
commit 0d1b709c33

30
Jenkinsfile vendored
View File

@ -1,30 +0,0 @@
pipeline {
agent any
stages {
stage('Build') {
agent {
docker { image 'rust:alpine' }
}
steps {
sh 'cargo b --release'
archiveArtifacts artifacts: '/target/school_app_api', fingerprint: true
}
}
stage('Test') {
agent {
docker { image 'rust:alpine' }
}
steps {
sh 'cargo test'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}