File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 11SHELL =/usr/bin/env bash -euo pipefail
22
3- PYTHON_PROJECT_DIRS_WITH_UNIT_TESTS = ack_backend backend delta_backend filenameprocessor mesh_processor recordprocessor redis_sync lambdas/id_sync
3+ PYTHON_PROJECT_DIRS_WITH_UNIT_TESTS = ack_backend backend delta_backend filenameprocessor mesh_processor recordprocessor redis_sync lambdas/id_sync lambdas/shared
44PYTHON_PROJECT_DIRS = e2e e2e_batch $(PYTHON_PROJECT_DIRS_WITH_UNIT_TESTS )
5- PYTHON_LAMBDA_DEPENDENCIES = lambdas/shared
65
76# Installs dependencies using poetry.
87install-python :
@@ -48,7 +47,7 @@ _dist_include="pytest.ini poetry.lock poetry.toml pyproject.toml Makefile build/
4847# Create /dist/ sub-directory and copy files into directory
4948release : clean publish build-proxy
5049 mkdir -p dist
51- for f in $( _dist_include) ; do cp -r $$ f dist; done
50+ for f in $( _dist_include) ; do cp --parents - r $$ f dist; done
5251 cp ecs-proxies-deploy.yml dist/ecs-deploy-sandbox.yml
5352 cp ecs-proxies-deploy.yml dist/ecs-deploy-internal-qa-sandbox.yml
5453 cp ecs-proxies-deploy.yml dist/ecs-deploy-internal-dev-sandbox.yml
Original file line number Diff line number Diff line change 11# Define the directory containing the Docker image and calculate its SHA-256 hash for triggering redeployments
22locals {
3- shared_dir = abspath (" ${ path . root } /../shared" )
4- id_sync_lambda_dir = abspath (" ${ path . root } /../id_sync" )
3+ shared_dir = abspath (" ${ path . root } /../lambdas/ shared" )
4+ id_sync_lambda_dir = abspath (" ${ path . root } /../lambdas/ id_sync" )
55
66 # Get files from both directories
77 shared_files = fileset (local. shared_dir , " **" )
You can’t perform that action at this time.
0 commit comments