diff --git a/Jenkinsfile b/Jenkinsfile
deleted file mode 100644
index df5113c87557e8786aa67355fb6e2d1a58d67485..0000000000000000000000000000000000000000
--- a/Jenkinsfile
+++ /dev/null
@@ -1,27 +0,0 @@
-pipeline {
-	agent {
-		docker {
-			image 'rust:latest'
-		}
-	}
-
-	stages {
-		stage('Clippy') {
-			steps {
-				sh "rustup component add clippy"
-				sh "cargo clippy --all-targets --all-features -- -D warnings"
-			}
-		}
-		stage('Build') {
-			steps {
-				sh "cargo build --release"
-			}
-		}
-	}
-
-	post {
-		always {
-			archiveArtifacts artifacts: 'target/release/dotacat', fingerprint: true
-		}
-	}
-}
\ No newline at end of file