adding jenkinsfile

This commit is contained in:
Andy Pack 2024-01-28 19:44:03 +00:00
parent 969eb45c72
commit 4156eb4902
Signed by: sarsoo
GPG Key ID: A55BA3536A5E0ED7
2 changed files with 19 additions and 0 deletions

16
.jenkins/jenkinsfile Normal file
View File

@ -0,0 +1,16 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'cargo build'
}
}
}
post {
always {
cleanWs()
}
}
}

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# dnstp
Transmitting files over dns piece by piece.