adding jenkins pipeline

This commit is contained in:
areeqakbr 2025-02-18 13:46:00 +07:00
parent 90d4a467cf
commit 8d23fdf4aa
1 changed files with 29 additions and 0 deletions

29
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,29 @@
pipeline {
agent any
stages {
stage('Checkout') {
steps {
git branch: 'main', url: 'https://git.winteraccess.id/winter-access/backend_nam.git'
}
}
stage('Pulling, Building, and Deploying') {
steps {
sh 'cd /home/developer/backend_nam'
sh 'git pull origin main'
sh 'go mod tidy'
sh 'go build -o myapp'
}
}
stage('Restart Service') {
steps {
// Add your deployment steps here
sh 'sudo systemctl daemon-reload'
sh 'sudo systemctl restart backend-nam'
}
}
}
}