Skip to content

Commit 6c9a832

Browse files
Changes made
1 parent 9178903 commit 6c9a832

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

jenkinsfile

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
pipeline {
2+
agent any
3+
4+
stages {
5+
stage('Clone Repository') {
6+
steps {
7+
git 'https://github.com/Harsh-Govil/HTML-CSS-JavaScript-projects-for-beginners.git'
8+
}
9+
}
10+
11+
stage('Build') {
12+
steps {
13+
// No build step for this project, so we just echo
14+
echo 'Build step placeholder'
15+
}
16+
}
17+
18+
stage('Test') {
19+
steps {
20+
echo 'Test step placeholder (no tests available)'
21+
}
22+
}
23+
24+
stage('Deploy') {
25+
steps {
26+
echo 'Deploy step placeholder'
27+
}
28+
}
29+
}
30+
31+
post {
32+
always {
33+
echo 'Pipeline execution completed.'
34+
}
35+
}
36+
}

0 commit comments

Comments
 (0)