Skip to content

Commit 21b3f02

Browse files
authored
Merge pull request #6892 from topcoder-platform/develop
PROD -- fix crushing when contentful items empty, also fix saving profiles without country info (PROD-4287)
2 parents 83a0135 + 3e94fdb commit 21b3f02

File tree

12 files changed

+555
-13
lines changed

12 files changed

+555
-13
lines changed

.circleci/config.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@ jobs:
117117
- run:
118118
name: "configuring environment"
119119
command: |
120-
./awsconfiguration.sh DEV
121-
./buildenv.sh -e DEV -b qa_communityapp_buildvar,qa_communityapp_deployvar -l dev_communityapp_buildvar_ps
120+
./awsconfiguration.sh QA
121+
./buildenv.sh -e QA -b qa_communityapp_buildvar,qa_communityapp_deployvar -l qa_communityapp_buildvar_ps
122122
# Build of Docker image.
123123
- run: *build_docker_image
124124
# Caching node modules.
@@ -129,7 +129,7 @@ jobs:
129129
command: |
130130
source awsenvconf
131131
source buildenvvar
132-
./master_deploy.sh -d ECS -e DEV -t latest -s qa_communityapp_taskvar -i communityapp
132+
./master_deploy.sh -d ECS -e QA -t latest -s qa_communityapp_taskvar -i communityapp
133133
134134
# Build & Deploy against prod api backend
135135
"build-prod-beta":
@@ -350,7 +350,7 @@ workflows:
350350
branches:
351351
only:
352352
- PROD-4183
353-
- M2MHotfix
353+
- fix_country_setting_in_profile
354354
# This is alternate dev env for parallel testing
355355
- "build-test":
356356
context : org-global
@@ -364,10 +364,7 @@ workflows:
364364
filters:
365365
branches:
366366
only:
367-
- universal_nav
368-
- marathon_match_submission_download
369-
- feat/badges-box
370-
- PROD-4234
367+
- qaenv
371368
# This is beta env for production soft releases
372369
- "build-prod-beta":
373370
context : org-global

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,7 @@ automated-smoke-test/config/config.json
6464
.classpath
6565
.factorypath
6666
.settings
67-
.project
67+
.project
68+
69+
qa_communityapp*.json
70+
buildenv.sh

CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @sushilshinde @ajefts @luizrrodrigues
1+
* @ajefts @luizrrodrigues

build.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ set -eo pipefail
77
# Builds Docker image of the app.
88
TAG="communityapp:latest"
99

10+
echo "COMMUNITY_APP_URL $COMMUNITY_APP_URL";
11+
echo "NODE_ENV $NODE_CONFIG_ENV";
12+
1013
docker build -t $TAG \
1114
--build-arg AUTH0_CLIENT_ID=$AUTH0_CLIENT_ID \
1215
--build-arg CDN_URL=$CDN_URL \

0 commit comments

Comments
 (0)