artifacts
This commit is contained in:
parent
58978fb705
commit
c06a7c962c
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
@ -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
1
data_processing.sh
Normal file
@ -0,0 +1 @@
|
||||
head -n 10 example_data.txt > processed_data.txt
|
Loading…
Reference in New Issue
Block a user