Files
cristiano e60d619f0b
HomeLab/Gitea HomeLab/pipeline/head This commit looks good
updating Jenkinsfile
2026-05-06 21:40:30 +10:00

19 lines
453 B
Groovy

pipeline {
agent any
stages {
stage('Checking tst branch on linux repository') {
steps {
script { // <--- Added script block
if (isUnix()) {
echo "Unix"
echo "tst"
sh 'ls -lha'
} else {
echo "Windows"
}
}
}
}
}
}