File tree Expand file tree Collapse file tree 4 files changed +23
-0
lines changed
Expand file tree Collapse file tree 4 files changed +23
-0
lines changed Original file line number Diff line number Diff line change 1+ .qodo
Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff line change 1+ .qodo
You can’t perform that action at this time.
0 commit comments