-
Notifications
You must be signed in to change notification settings - Fork 494
Run Postman Collection Once All Docker Images are built #50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
.github/workflows/ci.yml
Outdated
| uses: actions/checkout@v3 | ||
|
|
||
| - name: Pull Images From DockerHub and Start crAPI | ||
| run: docker-compose -f deploy/docker/docker-compose.yml --compatibility up -d |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need to prefix the docker-compose with VERSION variable so it always uses the currently built images and not remote images.
Also combine this to the previous JOB to leverage the QEMU setup.
VERSION=${{ env.TAG_NAME }} docker-compose -f deploy/docker/docker-compose.yml --compatibility up -d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have made the changes and pushed to my branch.
* Removed reference to Traceable from Service - Web * Removed reference to Traceable from Service - Workshop * build-docker-images build-docker-images on pull request * Removed Author meta tag * CI workflow setup * Fix tags syntax * Convert env to job.build.env * Convert job context to needs job output * Fix workflow push condition * Push condition workflow fix * Removed mentions of Traceable from the source code (#22) * Removed all Traceable mentions in crapi-community service * Removed all Traceable mentions in crapi-identity service * Removed all Traceable mentions in deploy configs and Removed Copyright file * Removed all Traceable mentions in README and LICENSE * Removed all Traceable mentions in k8 deploy configs * Correct indentation fixing workflow issues (#34) * Modified docker configs to support ARM builds (#20) * Added scripts to built mailhog * Moved from docker-compose-wait to pure docker-compose alternative * Removed GOOS and GOARCH env variables * Modified bash build script to only run bash files recursively Co-authored-by: Roshan Piyush <[email protected]> * Batch Files To Deploy Docker on Windows Machine (#19) * Added batch files for all services * Added the batch file to build all docker images * Removed comments from build batch files * Updated README * Modified README * Removed Print Statements Co-authored-by: Roshan Piyush <[email protected]> * Docker compose support variables for different release (#37) * Docker compose support variables for different release * Update build wrappers * Change pull_request docker login condition (#40) * Retrieval Of Orders Bug (#38) Retrieval Of Orders Bug (#38) * Added Heap memory limit for crapi-identity java application (#36) Co-authored-by: Roshan Piyush <[email protected]> * Update readme (#43) * Update CI branch refs (#44) * Workflow merge fix (#45) * vagrant: upgrade to ubuntu jammy (#42) vagrant: upgrade to ubuntu jammy (#42) * chore: adds contributing guidelines, code of conduct, PR and issue templates (#46) Co-authored-by: Jayesh Bapu Ahire <[email protected]> * Modify Templates: Pull Request and Issues (#48) * Update templates * Modify guidelines * Fix workflow path * Max File Size Limit for Video Files (#47) * Added Video Size Limit * Load built images in docker (#51) * Seperate build, run and push * Run Postman Collection Once All Docker Images are built (#50) * Added Postman collection and env variables * Update ci.yml to run postman collections Co-authored-by: Roshan Piyush <[email protected]> * Dynamic Ports for Identity, Community and Workshop services (#49) * Added dynamic port settings for Identity service * Added dynamic port settings for Community service * Added dynamic port settings for Workshop service * Added default port numbers for the services * Version Variable for Windows (#53) * Set version env variable for docker-compose * Increased memory limit for crapi-identity container (#57) * Openapi Spec Added (#58) Co-authored-by: mathew-jose <[email protected]> * Update Vagrant to use prebuilt images and fix db versions (#59) * Update Vagrant to use prebuilt images * Fix mongo and postgres version * Update latest on main merge (#60) Update latest tag on main merge * Release created -> published (#62) Release created -> published Co-authored-by: mathew-jose <[email protected]> Co-authored-by: Nikhil R <[email protected]> Co-authored-by: Mathew Jose Mammoottil <[email protected]> Co-authored-by: Nikhil R <[email protected]> Co-authored-by: PauloASilva <[email protected]> Co-authored-by: Jayesh Bapu Ahire <[email protected]> Co-authored-by: Jayesh Bapu Ahire <[email protected]> Co-authored-by: willmccardell <[email protected]>
Integrated newman cli in github actions to run a postman collection once docker images are built.
Checklist: