Added WebApplication1 and shellscripts

This commit is contained in:
2025-10-04 21:44:37 +02:00
parent 78d368de31
commit e6a0472450
81 changed files with 75077 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"
}
}
}
}