Skip to content

Automated Smoke Testing - Fix store_artifacts #5629

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

Merged
merged 11 commits into from
Jul 12, 2021
5 changes: 2 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,6 @@ workflows:
branches:
only:
- free
- fix-country-setting-page
# This is alternate dev env for parallel testing
- "build-qa":
context : org-global
Expand All @@ -364,15 +363,15 @@ workflows:
filters:
branches:
only:
- new-tabs-theme
- free
# This is stage env for production QA releases
- "build-prod-staging":
context : org-global
filters: &filters-staging
branches:
only:
- develop
- ast-member-profile
- ast-store-artifacts
# Production builds are exectuted
# when PR is merged to the master
# Don't change anything in this configuration
Expand Down
3 changes: 2 additions & 1 deletion automated-smoke-test/smoketest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,6 @@ track_error $? "Environment setting"
cp ${APPCONFIGFILENAME} config/config.json

docker build -t comm-smoke:latest .
docker run --shm-size=2g comm-smoke:latest ./testrun.sh -d -p 4444:4444
docker run --name comm-smoke --shm-size=2g comm-smoke:latest ./testrun.sh -d -p 4444:4444
docker cp comm-smoke:./automated-smoke-test/test-results .
track_error $? "Test case Failed"