Skip to content

Commit 5aabdb1

Browse files
authored
Merge pull request #2946 from Ankitasw/release-0.7-fix
Remove GINKGO_SKIP conditions from Makefile to enable the e2e tests for CAPI
2 parents a8900ee + fe59603 commit 5aabdb1

File tree

2 files changed

+1
-15
lines changed

2 files changed

+1
-15
lines changed

Makefile

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -119,20 +119,6 @@ E2E_SKIP_EKS_UPGRADE ?= "true"
119119
# Set EKS_SOURCE_TEMPLATE to override the source template
120120
EKS_SOURCE_TEMPLATE ?= eks/cluster-template-eks-control-plane-only.yaml
121121

122-
#### We are disable Cluster API Framework tests for the time being for lack of resources
123-
# With framework tests enables, tests exceed the 4 hour timeout.
124-
GINKGO_SKIP ?= \[Cluster API Framework\]
125-
126-
# If someone sets an explicit focus for Cluster API Framework, remove the skip
127-
ifeq ($(findstring \[Cluster API Framework\],$(E2E_FOCUS)),\[Cluster API Framework\])
128-
override undefine GINKGO_SKIP
129-
endif
130-
131-
# Enable Cluster API Framework tests for the purposes of running the PR blocking test
132-
ifeq ($(findstring \[PR-Blocking\],$(E2E_FOCUS)),\[PR-Blocking\])
133-
override undefine GINKGO_SKIP
134-
endif
135-
136122
override E2E_ARGS += -artifacts-folder="$(ARTIFACTS)" --data-folder="$(E2E_DATA_DIR)" -use-existing-cluster=$(USE_EXISTING_CLUSTER)
137123
override GINKGO_ARGS += -stream -progress -v -trace
138124

hack/tools/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ ifeq ($(UNAME), Linux)
178178
endif
179179
ifeq ($(UNAME), Darwin)
180180
$(MAKE) $(SSM_SHARE)/sessionmanager-bundle.zip
181-
cd $(BIN_DIR) && unzip -j ../share/ssm/sessionmanager-bundle.zip sessionmanager-bundle/bin/session-manager-plugin
181+
cd $(BIN_DIR) && unzip -o -j ../share/ssm/sessionmanager-bundle.zip sessionmanager-bundle/bin/session-manager-plugin
182182
endif
183183

184184
.PHONY: clean

0 commit comments

Comments
 (0)