5 Commits

Author SHA1 Message Date
cristiano 4f577ca317 Merge remote-tracking branch 'refs/remotes/origin/main'
HomeLab/Gitea HomeLab/pipeline/head This commit looks good
2026-05-06 21:45:37 +10:00
cristiano c37e88ee60 updating Jenkinsfile 2026-05-06 21:44:14 +10:00
cristiano f7eab604e4 Merge pull request 'Merging tst to main' (#2) from tst into main
HomeLab/Gitea HomeLab/pipeline/head This commit looks good
Reviewed-on: #2
2026-05-02 17:04:11 +10:00
cristiano bcd4d49fb0 Merge pull request 'testing changes on dev branch' (#1) from dev into tst
HomeLab/Gitea HomeLab/pipeline/head This commit looks good
Reviewed-on: #1
2026-05-02 16:39:35 +10:00
cristiano 68dfe2886b removing jenkins.bckp from tst
HomeLab/Gitea HomeLab/pipeline/head This commit looks good
2026-05-02 16:30:49 +10:00
2 changed files with 2 additions and 29 deletions
Vendored
+2 -2
View File
@@ -1,12 +1,12 @@
pipeline {
agent any
stages {
stage('Checking the dev branch on linux repository') {
stage('Checking branch main on linux repository') {
steps {
script { // <--- Added script block
if (isUnix()) {
echo "Unix"
echo "dev"
echo "main"
sh 'ls -lha'
} else {
echo "Windows"
-27
View File
@@ -1,27 +0,0 @@
pipeline {
agent any
stages {
stage('Checkout') {
steps {
checkout scm
}
}
stage('Build') {
steps {
// Add build commands here, e.g., sh 'make build'
sh 'echo "Building project..."'
}
}
stage('Test') {
steps {
// Add test commands here
sh 'echo "Running tests..."'
}
}
}
post {
failure {
echo 'The build failed.'
}
}
}