Files
linux/Jenkinsfile
T
cristiano a495c52fc5
HomeLab/Gitea HomeLab/pipeline/head There was a failure building this commit
testing jenkinsfile
2026-05-02 14:03:34 +10:00

17 lines
503 B
Groovy

pipeline {
agent any
stages {
stage('Checkout') {
steps {
withCredentials([string(credentialsId: 'jenkins', variable: 'd7624903f15d6e2e5f76d3ac001e9028eec2a6b5')]) {
if (isUnix()) {
sh 'git clone https://%d7624903f15d6e2e5f76d3ac001e9028eec2a6b5%@git.niascom.net/homelab/linux.git'
} else {
bat 'git clone https://%d7624903f15d6e2e5f76d3ac001e9028eec2a6b5%@git.niascom.net/homelab/linux.git'
}
}
}
}
}
}