Skip to content

Commit c172a40

Browse files
committed
don't immediately delete ci-test-runner
Signed-off-by: Jacob Klegar <[email protected]>
1 parent d5acaf4 commit c172a40

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

infra/scripts/azure-runner.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ setup_sparkop_role
4848

4949
# Run the test suite as a one-off pod.
5050
echo "${STEP_BREADCRUMB} Running the test suite"
51-
time kubectl run --rm -n "$NAMESPACE" -i ci-test-runner \
51+
time kubectl run -n "$NAMESPACE" -i ci-test-runner \
5252
--restart=Never \
5353
--image="${DOCKER_REPOSITORY}/feast-ci:${GIT_TAG}" \
54-
--env="STAGING_PATH=$STAGING_PATH" \
54+
--env="STAGING_PATH=${STAGING_PATH}" \
5555
-- \
56-
bash -c "mkdir src && cd src && git clone $GIT_REMOTE_URL && cd feast && git config remote.origin.fetch '+refs/pull/*:refs/remotes/origin/pull/*' && git fetch -q && git checkout $GIT_TAG && ./infra/scripts/setup-e2e-env-sparkop.sh && ./infra/scripts/test-end-to-end-sparkop.sh"
56+
bash -c "mkdir src && cd src && git clone ${GIT_REMOTE_URL} && cd feast && git config remote.origin.fetch '+refs/pull/*:refs/remotes/origin/pull/*' && git fetch -q && git checkout ${GIT_TAG} && ./infra/scripts/setup-e2e-env-sparkop.sh && ./infra/scripts/test-end-to-end-sparkop.sh"
5757

5858
echo "########## e2e tests took $SECONDS seconds ###########"

0 commit comments

Comments
 (0)