From e31fb287b155fd485a5bbafff94fb544c8a2f0ca Mon Sep 17 00:00:00 2001 From: Caden Marofke <132690522+marofke@users.noreply.github.com> Date: Thu, 5 Dec 2024 17:58:45 +0000 Subject: [PATCH] chore: Update prep_release to pull AL2023 docker Signed-off-by: Caden Marofke <132690522+marofke@users.noreply.github.com> --- scripts/prep_release.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) mode change 100644 => 100755 scripts/prep_release.sh diff --git a/scripts/prep_release.sh b/scripts/prep_release.sh old mode 100644 new mode 100755 index b903a67cb..8f2eedad3 --- a/scripts/prep_release.sh +++ b/scripts/prep_release.sh @@ -48,12 +48,13 @@ PULL_AL_FROM_ECR_ARGS=( "${ECR_REGION}" # Image versions to pull "latest" # required for building and publishing lambda layers - "2" # required for building Deadline docker images for running integration tests + "2" # required for building Deadline docker images for running integration tests for old versions + "2023" # required for building Deadline docker images for running integration tests ) /bin/bash ${SCRIPT_DIR}/pull_amazonlinux_from_ecr.sh "${PULL_AL_FROM_ECR_ARGS[@]}" # Run integ tests -(cd "${ROOT_DIR}" && yarn run build) +(cd "${ROOT_DIR}" && yarn clean && yarn build) pushd $TESTS_DIR yarn run e2e-automated popd