From f8b44d9cdfd48af2b86db94e6883e49970b29e45 Mon Sep 17 00:00:00 2001 From: Aly Sewelam Date: Fri, 3 Apr 2026 21:10:21 +0200 Subject: [PATCH] fuck this guy --- Jenkinsfile | 62 ----------------------------------------------------- 1 file changed, 62 deletions(-) delete mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile deleted file mode 100644 index 90d5046..0000000 --- a/Jenkinsfile +++ /dev/null @@ -1,62 +0,0 @@ -pipeline { - agent { - dockerContainer { - image 'rust:1.75' - } - } - - environment { - CARGO_HOME = '/usr/local/cargo' - RUSTUP_HOME = '/usr/local/rustup' - } - - stages { - stage('Checkout') { - steps { - checkout scm - } - } - - stage('Setup Environment') { - steps { - sh 'cargo --version' - sh 'rustc --version' - sh 'mkdir -p target' - sh 'mkdir -p ~/.cargo/registry' - } - } - - stage('Build Dependencies') { - steps { - sh 'cargo fetch' - } - } - - stage('Run Tests') { - steps { - sh 'cargo test --release' - } - } - - stage('Build Binary') { - steps { - sh 'cargo build --release' - } - } - - stage('Archive') { - steps { - archiveArtifacts artifacts: 'target/release/**', allowEmptyArchive: true - } - } - } - - post { - success { - echo 'Rust build completed successfully!' - } - failure { - echo 'Rust build failed!' - } - } -}