Compare commits

..

2 Commits

Author SHA1 Message Date
1d590689e3 Merge branch 'main' of ssh://gitea.service.nr5:2222/chaos/docker-salt-master
Some checks failed
chaos/docker-salt-master/pipeline/head There was a failure building this commit
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled
2023-10-20 15:38:23 +02:00
93dd080c4e Jenkinsfile 2023-10-20 15:38:12 +02:00
2 changed files with 23 additions and 0 deletions

11
.project Normal file
View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>docker-salt-master</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
</buildSpec>
<natures>
</natures>
</projectDescription>

12
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,12 @@
pipeline {
node('nomad') {
steps{
step("Hello"){
sh "echo 'Hello World!'"
}
}
}
}