We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b714823 commit 7310911Copy full SHA for 7310911
4 files changed
.DS_Store
8 KB
.gitignore
@@ -0,0 +1 @@
1
+.qodo
Jenkinsfile
@@ -0,0 +1,21 @@
+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
0 commit comments