Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update prep_release to pull AL2023 docker #1393

Closed
wants to merge 1 commit into from
Closed
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
5 changes: 3 additions & 2 deletions scripts/prep_release.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading