add jenkinsfile

This commit is contained in:
mohanad albasheer 2025-10-01 16:47:23 +03:00
parent 7ea58fc132
commit 81295a05b1

9
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,9 @@
pipeline {
agent any
options { timestamps(); ansiColor('xterm') }
stages {
stage('Build') { steps { sh 'echo "Build..."' } }
stage('Test') { steps { sh 'echo "Test..."' } }
}
post { always { cleanWs() } }
}