diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..551d922 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,13 @@ +pipeline { + agent none + stage('Build') { + agent { + docker { image 'rust:alpine' } + } + steps { + sh 'export' + sh 'cargo --release build' + sh 'ls -la' + } + } +} \ No newline at end of file