From 2327ad6e6b3fe214b9bc5e291e7399af5e3b595e Mon Sep 17 00:00:00 2001 From: s464903 Date: Sat, 30 Mar 2024 11:18:44 +0100 Subject: [PATCH] Update Jenkinsfile3 --- Jenkinsfile3 | 34 +--------------------------------- 1 file changed, 1 insertion(+), 33 deletions(-) diff --git a/Jenkinsfile3 b/Jenkinsfile3 index 651801c..4070486 100644 --- a/Jenkinsfile3 +++ b/Jenkinsfile3 @@ -32,39 +32,7 @@ pipeline { } stage('Run in container'){ docker.image('test-image').inside { - stage('Build') { - steps { - // Run the maven build - withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", - "KAGGLE_KEY=${params.KAGGLE_KEY}" ]) { - sh 'echo KAGGLE_USERNAME: $KAGGLE_USERNAME' - sh 'kaggle datasets list' - } - } - } - stage('Checkout') { - steps { - // Krok: Sklonowanie repozytorium git - checkout scm - } - } - stage('Execute Shell Script') { - steps { - withEnv(["CUTOFF=${params.CUTOFF}" ]) { - // Krok: Wywołanie skryptu shella - script { - sh 'chmod +x data_processing_script.sh' // Nadaj uprawnienia do wykonania skryptu - sh './data_processing_script.sh $CUTOFF' // Wykonaj skrypt - } - } - } - } - stage('Archive Artifacts') { - steps { - // Krok: Zarchiwizowanie artefaktów - archiveArtifacts artifacts: 'processed_data.csv', fingerprint: true - } - } + } }