Files
linux/Jenkinsfile
T
cristiano 1a92dcceaf
HomeLab/Gitea HomeLab/pipeline/head This commit looks good
testing jenkinsfile
2026-05-02 14:16:52 +10:00

18 lines
383 B
Groovy

pipeline {
agent any
stages {
stage('Test') {
steps {
script { // <--- Added script block
if (isUnix()) {
echo "Unix"
sh 'ls -lha'
} else {
echo "Windows"
}
}
}
}
}
}