Skip to content

Commit

Permalink
merge changes from main
Browse files Browse the repository at this point in the history
  • Loading branch information
knihit committed Jul 17, 2024
1 parent 64fb48f commit 0c1f138
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions deployment/v2/initialize-instance.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#!/bin/bash
set -euo pipefail

deployment_dir=$(cd $(dirname $0) && pwd)
source_dir="$deployment_dir/../../source"

echo "============================================================================================="
echo "aligning versions and updating package.json for CDK v2..."
/bin/bash $deployment_dir/align-version.sh

bail="--bail"
runtarget="build+lint+test"
cd $source_dir/

export PATH=$source_dir/node_modules/.bin:$PATH
export NODE_OPTIONS="--max-old-space-size=4096 ${NODE_OPTIONS:-}"

npm install -g @aws-cdk/integ-runner

echo "============================================================================================="
echo "installing..."
yarn install --frozen-lockfile

0 comments on commit 0c1f138

Please sign in to comment.