Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit c068ef5

Browse files
authoredJul 7, 2020
Merge pull request #14 from topcoder-platform/dev-circleci
Build changes [skip ci]
2 parents 7deaa03 + 4a192e0 commit c068ef5

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed
 

‎.circleci/config.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,19 @@ builddeploy_steps: &builddeploy_steps
2929
- run: *install_dependency
3030
- run: *install_deploysuite
3131
- restore_cache: *restore_cache_settings_for_build
32-
- run: ./build.sh ${APPNAME}
32+
- run:
33+
name: Running MasterScript.
34+
command: |
35+
./awsconfiguration.sh $DEPLOY_ENV
36+
source awsenvconf
37+
./buildenv.sh -e $DEPLOY_ENV -b ${LOGICAL_ENV}-global-appvar,${LOGICAL_ENV}-${APPNAME}-appvar
38+
./build.sh ${APPNAME}
39+
rm -f buildenvvar
3340
- save_cache: *save_cache_settings
3441
- deploy:
3542
name: Running MasterScript.
3643
command: |
37-
./awsconfiguration.sh $DEPLOY_ENV
44+
# ./awsconfiguration.sh $DEPLOY_ENV
3845
source awsenvconf
3946
./buildenv.sh -e $DEPLOY_ENV -b ${LOGICAL_ENV}-${APPNAME}-deployvar
4047
source buildenvvar

‎docker/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@ WORKDIR /ubahn_app
99

1010
# Install the dependencies from package.json
1111
RUN npm install
12-
RUN npm run install-client
12+
# RUN npm run install-client
13+
RUN ["/bin/bash", "-c", "source buildenvvar ;npm run install-client"]
1314
CMD npm start

0 commit comments

Comments
 (0)
This repository has been archived.