Skip to content

Commit

Permalink
[release-v1.11] skipping make command for P/Z. (#433)
Browse files Browse the repository at this point in the history
* skipping make command for P/Z.

* Update e2e-common.sh

---------

Co-authored-by: Alston Dias <[email protected]>
  • Loading branch information
openshift-cherrypick-robot and AlstonDias authored Nov 23, 2023
1 parent ade9d79 commit 768e988
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion openshift/e2e-common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,13 @@ function install_serverless(){

function run_e2e_rekt_tests(){
header "Running E2E Reconciler Tests"
HW_ARCH=$(arch)

images_file=$(dirname $(realpath "$0"))/images.yaml
make generate-release
#skipping for P/Z as the test images aren't multiarch.
if [ $HW_ARCH != "ppc64le" ] && [ $HW_ARCH != "s390x" ]; then
make generate-release
fi
cat "${images_file}"

local test_name="${1:-}"
Expand Down

0 comments on commit 768e988

Please sign in to comment.