Skip to content

Commit

Permalink
Update ci-e2e.sh to quote LABEL_FILTERS value (#429)
Browse files Browse the repository at this point in the history
This is to ensure the full value of LABEL_FILTERS gets propagated.
  • Loading branch information
thunderboltsid authored May 2, 2024
1 parent 6cb4938 commit b74ab58
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions scripts/ci-e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export PATH="${REPO_ROOT}/hack/tools/bin:${PATH}"

# Override e2e conf values with CI specific environment variables
MAKE_TARGET=${MAKE_TARGET}
LABEL_FILTERS=${LABEL_FILTERS}
LABEL_FILTERS="${LABEL_FILTERS}"
KUBERNETES_VERSION_MANAGEMENT=${KUBERNETES_VERSION_MANAGEMENT}
NUTANIX_ENDPOINT=${NUTANIX_ENDPOINT}
NUTANIX_USER=${NUTANIX_USER}
Expand All @@ -43,4 +43,5 @@ NUTANIX_MACHINE_TEMPLATE_IMAGE_NAME=${NUTANIX_MACHINE_TEMPLATE_IMAGE_NAME}
NUTANIX_SUBNET_NAME=${NUTANIX_SUBNET_NAME}

# Run e2e tests
make ${MAKE_TARGET} LABEL_FILTERS=${LABEL_FILTERS}
echo "Running make with TARGET: ${MAKE_TARGET} and LABEL_FILTERS: ${LABEL_FILTERS}"
make ${MAKE_TARGET} LABEL_FILTERS="${LABEL_FILTERS}"

0 comments on commit b74ab58

Please sign in to comment.