Skip to content

Commit

Permalink
Create Jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
phalbert authored May 30, 2024
1 parent 0bfa972 commit 3868f09
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
pipeline {
agent any

environment {
GITHUB_TOKEN = credentials("GITHUB_LIMBOPAY")
}

stages {
stage('Checkout') {
steps {
git branch: 'main', credentialsId: 'github', url: '[email protected]:limbopay/limbo-core.git'
}
}

stage('Publish results') {
steps {
echo "Deployment successful"
}
}
}

post {
success {
echo "Build successful"
// You can add additional steps here, like running tests or notifications.
}

failure {
echo "Build failed"
}
}
}

0 comments on commit 3868f09

Please sign in to comment.