You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pc...@apache.org on 2023/03/03 08:21:12 UTC

[camel-k] branch release-1.12.x updated: fix(ci): use an external kamelet repo

This is an automated email from the ASF dual-hosted git repository.

pcongiusti pushed a commit to branch release-1.12.x
in repository https://gitbox.apache.org/repos/asf/camel-k.git


The following commit(s) were added to refs/heads/release-1.12.x by this push:
     new 5b4273261 fix(ci): use an external kamelet repo
5b4273261 is described below

commit 5b42732613188f83e5d1d910722d55c8bbc30bd0
Author: Pasquale Congiusti <pa...@gmail.com>
AuthorDate: Fri Mar 3 09:21:08 2023 +0100

    fix(ci): use an external kamelet repo
---
 e2e/global/common/kamelet_test.go | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/e2e/global/common/kamelet_test.go b/e2e/global/common/kamelet_test.go
index 778bc3419..0384fae33 100644
--- a/e2e/global/common/kamelet_test.go
+++ b/e2e/global/common/kamelet_test.go
@@ -63,7 +63,7 @@ func TestKameletClasspathLoading(t *testing.T) {
 			Eventually(Kamelet(kameletName, ns)).Should(BeNil())
 
 			// Add the custom repository
-			Expect(Kamel("kamelet", "add-repo", "github:apache/camel-k/e2e/global/common/files/kamelets", "-n", ns).Execute()).To(Succeed())
+			Expect(Kamel("kamelet", "add-repo", "github:squakez/ck-kamelet-test-repo/kamelets", "-n", ns).Execute()).To(Succeed())
 
 			Expect(KamelRunWithID(operatorID, ns, "files/TimerCustomKameletIntegration.java").Execute()).To(Succeed())
 			Eventually(IntegrationPodPhase(ns, "timer-custom-kamelet-integration"), TestTimeoutLong).Should(Equal(corev1.PodRunning))
@@ -71,7 +71,7 @@ func TestKameletClasspathLoading(t *testing.T) {
 			Eventually(IntegrationLogs(ns, "timer-custom-kamelet-integration")).Should(ContainSubstring("great message"))
 
 			// Remove the custom repository
-			Expect(Kamel("kamelet", "remove-repo", "github:apache/camel-k/e2e/global/common/files/kamelets", "-n", ns).Execute()).To(Succeed())
+			Expect(Kamel("kamelet", "remove-repo", "github:squakez/ck-kamelet-test-repo/kamelets", "-n", ns).Execute()).To(Succeed())
 		})
 	})
 }