3 Commits

Author SHA1 Message Date
cristiano e60d619f0b updating Jenkinsfile
HomeLab/Gitea HomeLab/pipeline/head This commit looks good
2026-05-06 21:40:30 +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 tst branch on linux repository') {
steps {
script { // <--- Added script block
if (isUnix()) {
echo "Unix"
echo "dev"
echo "tst"
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.'
}
}
}