artifacts

This commit is contained in:
PawelDopierala 2024-03-20 15:12:02 +01:00
parent 58978fb705
commit c06a7c962c
2 changed files with 5 additions and 0 deletions

4
Jenkinsfile vendored
View File

@ -1,9 +1,13 @@
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
checkout scm
sh './data_processing.sh'
archiveArtifacts artifacts: './*'
}
}
}

1
data_processing.sh Normal file
View File

@ -0,0 +1 @@
head -n 10 example_data.txt > processed_data.txt