This commit is contained in:
Jakub Zaręba 2023-03-27 20:43:35 +02:00
parent 325a4c6951
commit 3126a97492

47
Jenkinsfile vendored
View File

@ -1,27 +1,28 @@
pipeline {
agent any
stages {
stage('Clone Git Repository') {
steps {
checkout([$class: 'GitSCM',
branches: [[name: '*/master']],
userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s487187/ium_487187.git']]])
}
}
stage('Process Data') {
steps {
sh '''
#!/bin/bash
wget https://archive.ics.uci.edu/ml/machine-learning-databases/iris/iris.data -O iris.data
shuf iris.data | head -n 100 > iris_subset.csv
cp iris_subset.csv $JENKINS_HOME/jobs/${JOB_NAME}/builds/${BUILD_NUMBER}/archive/iris_subset.csv
'''
}
node {
stage('Start') {
echo "Program Started"
}
stage('Clone Git Repository') {
git 'https://git.wmi.amu.edu.pl/s487187/ium_487187.git'
}
stage('Process Data') {
steps {
sh '''
#!/bin/bash
wget https://www.kaggle.com/datasets/download/5a67c0b2f8e364f5e0aafa810c7e145e9b9ce934f3d13fc54c747b9822cf6f7f -O olympics.csv.zip
unzip olympics.csv.zip
head -n 1000 olympics.csv > olympics_subset.csv
cp olympics_subset.csv $JENKINS_HOME/jobs/${JOB_NAME}/builds/${BUILD_NUMBER}/archive/olympics_subset.csv
'''
}
}
post {
always {
archiveArtifacts artifacts: "olympics-124-years-datasettill-2020\Athletes_summer_games.csv", onlyIfSuccessful: true
}
stage('End') {
echo 'Program ended!'
archiveArtifacts 'olympics_subset.csv'
}
}