Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,6 @@ install_deploysuite: &install_deploysuite
cp ./../buildscript/awsconfiguration.sh .
cp ./../buildscript/psvar-processor.sh .

restore_cache_settings_for_build: &restore_cache_settings_for_build
key: docker-node-modules-{{ checksum "yarn.lock" }}

save_cache_settings: &save_cache_settings
key: docker-node-modules-{{ checksum "yarn.lock" }}
paths:
- node_modules

finger_print_add: &finger_print_add

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[⚠️ performance]
The removal of cache restoration and saving (restore_cache_settings_for_build and save_cache_settings) could lead to longer build times as dependencies will need to be re-fetched on every build. Consider re-evaluating the necessity of this removal if build performance is a concern.

fingerprints:
- SHA256:KJYSvQh9CxkY9yRXxp+Geo6cllnfSiiKAH3LFQ/X9f4
Expand All @@ -33,7 +25,6 @@ builddeploy_steps: &builddeploy_steps
- setup_remote_docker
- run: *install_dependency
- run: *install_deploysuite
- restore_cache: *restore_cache_settings_for_build
- run:
name: "Authenticate with CodeArtifact and build Docker image"
command: |
Expand All @@ -51,7 +42,6 @@ builddeploy_steps: &builddeploy_steps
source buildvar_env
rm -f awsenvconf
./build.sh ${APPNAME}
- save_cache: *save_cache_settings
- deploy:
name: Running MasterScript.
command: |
Expand Down