From fa56590025b23b1267b36a49689944ece067039b Mon Sep 17 00:00:00 2001 From: s470618 Date: Thu, 23 Mar 2023 14:37:46 +0100 Subject: [PATCH] excercise 3.5 test --- Jenkinsfile | 2 +- script.sh | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100755 script.sh diff --git a/Jenkinsfile b/Jenkinsfile index 2ca9126..6c3904a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1 +1 @@ -pipeline { agent any stages { stage('Stage 1') { steps { echo 'Hello world!' } } } } \ No newline at end of file +node { stage('Preparation') { properties([ parameters([ string( defaultValue: 'wiktorbombola', description: 'Kaggle username', name: 'KAGGLE_USERNAME', trim: false ), password( defaultValue: '', description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials', name: 'KAGGLE_KEY' ) ]) ]) } stage('Build') { withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", "KAGGLE_KEY=${params.KAGGLE_KEY}" ]) { checkout https://git.wmi.amu.edu.pl/s470618/ium_470618.git sh script.sh } } stage('artifacts') { steps { echo 'saving artifacts' archiveArtifacts 'output.txt' } } } \ No newline at end of file diff --git a/script.sh b/script.sh new file mode 100755 index 0000000..1390d94 --- /dev/null +++ b/script.sh @@ -0,0 +1,5 @@ +kaggle competitions download -c titanic +unzip titanic.zip +wc -l train.csv +head -500 train.csv | shuf > output.txt +echo 'script done'