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

This commit is contained in:
2023-07-13 17:19:45 +10:00
parent 7621296a6f
commit 7e03a31eae

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'''
}
}
}
}