Skip to content

Commit 18aca79

Browse files
lokeshranginenidharmisha
authored andcommitted
feat: Adding github action to run the operator end-to-end tests. (feast-dev#4762)
1 parent d9a1a64 commit 18aca79

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

.github/workflows/operator-e2e-integration-tests.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010
- opened
1111
- synchronize
1212
- labeled
13+
<<<<<<< HEAD
1314
paths-ignore:
1415
- 'community/**'
1516
- 'docs/**'
@@ -18,6 +19,11 @@ on:
1819
jobs:
1920
operator-e2e-tests:
2021
timeout-minutes: 40
22+
=======
23+
24+
jobs:
25+
operator-e2e-tests:
26+
>>>>>>> 92081089e (feat: Adding github action to run the operator end-to-end tests. (#4762))
2127
if:
2228
((github.event.action == 'labeled' && (github.event.label.name == 'approved' || github.event.label.name == 'lgtm' || github.event.label.name == 'ok-to-test')) ||
2329
(github.event.action != 'labeled' && (contains(github.event.pull_request.labels.*.name, 'ok-to-test') || contains(github.event.pull_request.labels.*.name, 'approved') || contains(github.event.pull_request.labels.*.name, 'lgtm')))) &&
@@ -43,7 +49,11 @@ jobs:
4349

4450
- name: Create KIND cluster
4551
run: |
52+
<<<<<<< HEAD
4653
kind create cluster --name $KIND_CLUSTER --wait 10m
54+
=======
55+
kind create cluster --name $KIND_CLUSTER --wait 5m
56+
>>>>>>> 92081089e (feat: Adding github action to run the operator end-to-end tests. (#4762))
4757

4858
- name: Set up kubernetes context
4959
run: |
@@ -56,16 +66,22 @@ jobs:
5666
cd infra/feast-operator/
5767
make test-e2e
5868
69+
<<<<<<< HEAD
5970
- name: Debug KIND Cluster when there is a failure
6071
if: failure()
6172
run: |
6273
kubectl get pods --all-namespaces
6374
kubectl describe nodes
6475
76+
=======
77+
>>>>>>> 92081089e (feat: Adding github action to run the operator end-to-end tests. (#4762))
6578
- name: Clean up
6679
if: always()
6780
run: |
6881
# Delete the KIND cluster after tests
6982
kind delete cluster --name kind-$KIND_CLUSTER
83+
<<<<<<< HEAD
7084

7185

86+
=======
87+
>>>>>>> 92081089e (feat: Adding github action to run the operator end-to-end tests. (#4762))

0 commit comments

Comments
 (0)