From c6cd22bf410e0ac63de2828ffe6ffe7f1a9274af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patryk=20=C5=81ukasiewicz?= Date: Thu, 20 Apr 2023 14:21:59 +0200 Subject: [PATCH] Zaktualizuj 'Jenkinsfile' --- Jenkinsfile | 50 +++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 39 insertions(+), 11 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 13af628..39be5da 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,5 +1,6 @@ pipeline { - agent any + agent any + //Definijuemy parametry, które będzie można podać podczas wywoływania zadania parameters{ string( @@ -9,25 +10,52 @@ pipeline { trim: false ) password( - defaultValue: 'password', + defaultValue: '', description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials', name: 'KAGGLE_KEY' ) + string( + defaultValue: '200', + description: 'CUTOFF', + name: 'CUTOFF', + trim: false + ) } stages { - stage('Hello') { + + stage('Clone Git') { steps { - //Wypisz wartość parametru w konsoli (To nie jest polecenie bash, tylko groovy!) - echo "INPUT_TEXT: ${KAGGLE_USERNAME}" - //Wywołaj w konsoli komendę "figlet", która generuje ASCI-art - sh "figlet \"${KAGGLE_USERNAME}${KAGGLE_KEY}\" | tee output.txt" + sh 'git clone https://git.wmi.amu.edu.pl/s43743/ium_z434743' } } - stage('Goodbye!') { + + stage('Build') { steps { - echo 'Goodbye!' - //Zarchiwizuj wynik - archiveArtifacts 'output.txt' + withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", + "KAGGLE_KEY=${params.KAGGLE_KEY}" ]) { + sh 'kaggle datasets download -d andrezaza/clapper-massive-rotten-tomatoes-movies-and-reviews' + sh 'unzip clapper-massive-rotten-tomatoes-movies-and-reviews.zip -d ./ium_z434743' + } + } + } + stage('Docker') { + agent { + dockerfile { + filename 'Dockerfile' + dir 'ium_z43743' + reuseNode true + } + } + steps { + sh 'python ./ium_z434743/z434743-create-dataset.py' + archiveArtifacts 'X_test.csv' + archiveArtifacts 'X_dev.csv' + archiveArtifacts 'X_train.csv' + } + } + stage('clear') { + steps { + sh 'rm -rf *' } } }