From 5e4ea1a6203f3ed8542eb6defc03db433e7c7336 Mon Sep 17 00:00:00 2001 From: Anatolii Bazko Date: Mon, 17 Jan 2022 10:42:18 +0200 Subject: [PATCH] ci: Remove test workflow (#1292) Signed-off-by: Anatolii Bazko --- .github/bin/minikube/test-backup-restore.sh | 117 ------------------ .../minikube-test-backup-restore.yaml | 38 ------ 2 files changed, 155 deletions(-) delete mode 100755 .github/bin/minikube/test-backup-restore.sh delete mode 100644 .github/workflows/minikube-test-backup-restore.yaml diff --git a/.github/bin/minikube/test-backup-restore.sh b/.github/bin/minikube/test-backup-restore.sh deleted file mode 100755 index 00c627d08..000000000 --- a/.github/bin/minikube/test-backup-restore.sh +++ /dev/null @@ -1,117 +0,0 @@ -#!/bin/bash -# -# Copyright (c) 2019-2021 Red Hat, Inc. -# This program and the accompanying materials are made -# available under the terms of the Eclipse Public License 2.0 -# which is available at https://www.eclipse.org/legal/epl-2.0/ -# -# SPDX-License-Identifier: EPL-2.0 -# -# Contributors: -# Red Hat, Inc. - initial API and implementation -# - -set -e -set -x - -# Get absolute path for root repo directory from github actions context: https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions -export OPERATOR_REPO="${GITHUB_WORKSPACE}" -if [ -z "${OPERATOR_REPO}" ]; then - OPERATOR_REPO=$(dirname "$(dirname "$(dirname "$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")")")") -fi - -source "${OPERATOR_REPO}"/.github/bin/common.sh - -# Stop execution on any error -trap "catchFinish" EXIT SIGINT - -triggerBackup() { - kubectl apply -f - <