Files
linux/Jenkinsfile
T
cristiano 7a105ae0ef
HomeLab/Gitea HomeLab/pipeline/head This commit looks good
testing jenkinsfile
2026-05-02 14:12:59 +10:00

17 lines
346 B
Groovy

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