Initial commit
Some checks failed
PSU-X25-CICD/PSU-Test-01/pipeline/head There was a failure building this commit
PSU-CICD/PSU-Test-01/pipeline/head This commit looks good

This commit is contained in:
PSU-CICD
2026-03-01 09:45:41 +00:00
commit 91204da90c
88 changed files with 84102 additions and 0 deletions

36
shellscripts/Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,36 @@
pipeline {
agent {
label 'cicd-builder'
}
stages {
stage('List folder content') {
steps {
echo "List folder content"
sh "ls -l"
sh "export"
}
}
stage('Change to unix files') {
steps {
echo "Change to unix files"
sh "/bin/dos2unix shellscripts/*"
sh "/bin/chmod 755 shellscripts/*"
}
}
stage('Build all projects') {
steps {
echo "Build all projects"
sh "shellscripts/01_dotnet_build.sh"
}
}
stage('Docker container release') {
when {
branch 'Docker'
}
steps {
echo "Build container(s)"
sh "shellscripts/01_container_build.sh"
}
}
}
}