Skip to content

Commit 779e526

Browse files
authored
fix errors in ci workflow (#288)
Signed-off-by: Yingchun Guo <yingchun.guo@intel.com>
1 parent 625899b commit 779e526

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/image-build-on-manual.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141
echo "nodes=$nodes" >> $GITHUB_OUTPUT
4242
4343
image-build:
44+
needs: get-build-matrix
4445
strategy:
4546
matrix:
4647
node: ${{ fromJSON(needs.get-build-matrix.outputs.nodes) }}

.github/workflows/scripts/e2e/gmc_install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function cleanup_gmc() {
6464
if kubectl get namespace $SYSTEM_NAMESPACE > /dev/null 2>&1; then
6565
echo "Deleting namespace: $SYSTEM_NAMESPACE"
6666
kubectl delete namespace "$SYSTEM_NAMESPACE"
67-
kubectl delete crd gmconnectors.gmc.opea.io
67+
kubectl delete crd gmconnectors.gmc.opea.io || true
6868
else
6969
echo "Namespace $SYSTEM_NAMESPACE does not exist"
7070
fi

0 commit comments

Comments
 (0)