cd: Added init file
All checks were successful
Woodburn Main/woodburn/pipeline/head This commit looks good

This commit is contained in:
Nathan Woodburn 2023-07-13 17:19:45 +10:00
parent 7621296a6f
commit 7e03a31eae
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

14
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,14 @@
pipeline {
agent any
stages {
stage('Files') {
steps {
sh returnStdout: true, script: '''for file in *
do
echo $file
done'''
}
}
}
}