Skip to content

Commit 7310911

Browse files
committed
jenkins-file-added
1 parent b714823 commit 7310911

File tree

4 files changed

+23
-0
lines changed

4 files changed

+23
-0
lines changed

.DS_Store

8 KB
Binary file not shown.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.qodo

Jenkinsfile

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
pipeline {
2+
agent any
3+
stages {
4+
stage('Keploy Tests') {
5+
steps {
6+
// Clone the git repository
7+
git branch: 'chore/Integrate-github-cicd', url: 'https://github.com/Achanandhi-M/samples-java.git'
8+
// switch to the directory and run test
9+
dir('gin-mongo') {
10+
sh """
11+
# Download and install Keploy binary
12+
curl --silent -O -L https://keploy.io/install.sh && bash install.sh
13+
14+
# keploy test -c "docker compose up" --container-name "ginMongoApp" --delay 15
15+
keploy test -c "docker compose up" --container-name javaApp --build-delay 50 --delay 20
16+
"""
17+
}
18+
}
19+
}
20+
}
21+
}

spring-petclinic/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.qodo

0 commit comments

Comments
 (0)