dev #14

Merged
wtukatyr merged 24 commits from dev into main 2025-06-09 12:51:35 +03:00
2 changed files with 12 additions and 0 deletions
Showing only changes of commit 6b4e12697f - Show all commits

11
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('Hello') {
steps {
echo 'Hello from Jenkins'
}
}
}
}