Delete Jenkinsfile

This commit is contained in:
pavan-msys 2026-05-06 10:58:13 +05:30 committed by GitHub
parent 1bd87090fa
commit 141a64342c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

37
Jenkinsfile vendored
View File

@ -1,37 +0,0 @@
pipeline {
agent any
stages {
stage('Info') {
steps {
echo "Branch: ${env.BRANCH_NAME}"
echo "PR ID: ${env.CHANGE_ID}"
echo "Target: ${env.CHANGE_TARGET}"
}
}
stage('Build') {
steps {
sh 'echo "Building..."'
}
}
stage('Test') {
steps {
sh 'echo "Running tests..."'
}
}
stage('Deploy') {
when {
expression {
env.CHANGE_ID == null &&
(env.BRANCH_NAME == 'main' || env.BRANCH_NAME == 'master')
}
}
steps {
echo "🚀 Deploying from ${env.BRANCH_NAME}"
}
}
}
}