Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
13dc197
Added a test.html in forked Karthik's project
ravichandra9594 Nov 2, 2022
75df513
Added another file (new.html)
ravichandra9594 Nov 2, 2022
b391f47
Create JenkinsFile
ravichandra9594 Nov 4, 2022
7c8813c
Update JenkinsFile
ravichandra9594 Nov 4, 2022
d605325
Delete JenkinsFile
ravichandra9594 Nov 6, 2022
87bdbd6
Create JenkinsFile
ravichandra9594 Nov 6, 2022
a84652d
Update JenkinsFile
ravichandra9594 Nov 6, 2022
990609a
Update JenkinsFile
ravichandra9594 Nov 6, 2022
b1bb727
Rename Jenkinsile to Jenkinsfile
ravichandra9594 Nov 6, 2022
e5a4845
Update Jenkinsfile
ravichandra9594 Nov 6, 2022
e403f79
Update README.md
ravichandra9594 Nov 6, 2022
577101f
Update README.md
ravichandra9594 Nov 6, 2022
4481fb9
Update README.md
ravichandra9594 Nov 10, 2022
3a06aea
Update Jenkinsfile
ravichandra9594 Nov 11, 2022
b96807f
Update Jenkinsfile
ravichandra9594 Nov 13, 2022
b102074
Update Jenkinsfile
ravichandra9594 Nov 13, 2022
f9f45e0
Added a post success action to copy build
ravichandra9594 Nov 13, 2022
f567871
Update Jenkinsfile
ravichandra9594 Nov 13, 2022
dafc140
Update Jenkinsfile
ravichandra9594 Nov 15, 2022
982d10e
Update Jenkinsfile
ravichandra9594 Nov 15, 2022
c275a04
Update Jenkinsfile
ravichandra9594 Nov 16, 2022
cf85afc
Update Jenkinsfile
ravichandra9594 Nov 16, 2022
5fab60a
Update Jenkinsfile
ravichandra9594 Nov 16, 2022
8d1fb22
Update Jenkinsfile
ravichandra9594 Nov 16, 2022
e7efd0a
Update Jenkinsfile
ravichandra9594 Nov 16, 2022
d551dee
Update Jenkinsfile
ravichandra9594 Nov 16, 2022
6e1754e
Update Jenkinsfile
ravichandra9594 Nov 16, 2022
6d31544
Update Jenkinsfile
ravichandra9594 Nov 16, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
pipeline {
agent {
label 'slave'
}
tools {
maven 'Maven-v3.8.6'
}

stages {
stage('Build') {
steps {
sh 'mvn -B -DskipTests clean install'
}
}
stage('Test') {
steps {
sh 'mvn test'
}
post {
always {
junit 'target/surefire-reports/*.xml'
}
}
}

}
}
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,6 @@ to run

scripts/deliver.sh

this is a uild trigger test
Updating build trigger by Ravichandra V
New Test
Test
6 changes: 6 additions & 0 deletions src/main/java/com/mycompany/FileNew.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<html>
<head> <title> Testing </title> </head>
<body>
<p> This is a test </p>
</body>
</html>
6 changes: 6 additions & 0 deletions src/main/java/com/mycompany/app/test.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<html>
<head> <title> Testing </title> </head>
<body>
<p> This is a test </p>
</body>
</html>