Skip to content

Commit dbe17b4

Browse files
authored
Move spark-related parts to a separate repo (#1307)
Signed-off-by: Oleg Avdeev <oleg.v.avdeev@gmail.com>
1 parent 4d73e29 commit dbe17b4

113 files changed

Lines changed: 7 additions & 14611 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/complete.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: [self-hosted]
88
strategy:
99
matrix:
10-
component: [core, serving, jobservice, jupyter, ci]
10+
component: [core, serving, jupyter, ci]
1111
env:
1212
GITHUB_PR_SHA: ${{ github.event.pull_request.head.sha }}
1313
REGISTRY: gcr.io/kf-feast

.github/workflows/master_only.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: [self-hosted]
1212
strategy:
1313
matrix:
14-
component: [core, serving, jobservice, jupyter, ci]
14+
component: [core, serving, jupyter, ci]
1515
env:
1616
MAVEN_CACHE: gs://feast-templocation-kf-feast/.m2.2020-08-19.tar
1717
steps:

Makefile

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -79,23 +79,16 @@ test-python:
7979
format-python:
8080
# Sort
8181
cd ${ROOT_DIR}/sdk/python; isort feast/ tests/
82-
cd ${ROOT_DIR}/tests/e2e; isort .
8382

8483
# Format
8584
cd ${ROOT_DIR}/sdk/python; black --target-version py37 feast tests
86-
cd ${ROOT_DIR}/tests/e2e; black --target-version py37 .
8785

8886
lint-python:
8987
cd ${ROOT_DIR}/sdk/python; mypy feast/ tests/
9088
cd ${ROOT_DIR}/sdk/python; isort feast/ tests/ --check-only
9189
cd ${ROOT_DIR}/sdk/python; flake8 feast/ tests/
9290
cd ${ROOT_DIR}/sdk/python; black --check feast tests
9391

94-
cd ${ROOT_DIR}/tests; mypy e2e
95-
cd ${ROOT_DIR}/tests; isort e2e --check-only
96-
cd ${ROOT_DIR}/tests; flake8 e2e
97-
cd ${ROOT_DIR}/tests; black --check e2e
98-
9992
# Go SDK
10093

10194
install-go-ci-dependencies:
@@ -122,16 +115,12 @@ build-push-docker:
122115
@$(MAKE) push-core-docker registry=$(REGISTRY) version=$(VERSION)
123116
@$(MAKE) push-serving-docker registry=$(REGISTRY) version=$(VERSION)
124117
@$(MAKE) push-ci-docker registry=$(REGISTRY) version=$(VERSION)
125-
@$(MAKE) push-jobservice-docker registry=$(REGISTRY) version=$(VERSION)
126118

127-
build-docker: build-core-docker build-serving-docker build-ci-docker build-jobservice-docker
119+
build-docker: build-core-docker build-serving-docker build-ci-docker
128120

129121
push-core-docker:
130122
docker push $(REGISTRY)/feast-core:$(VERSION)
131123

132-
push-jobservice-docker:
133-
docker push $(REGISTRY)/feast-jobservice:$(VERSION)
134-
135124
push-serving-docker:
136125
docker push $(REGISTRY)/feast-serving:$(VERSION)
137126

@@ -144,9 +133,6 @@ push-jupyter-docker:
144133
build-core-docker:
145134
docker build --build-arg VERSION=$(VERSION) -t $(REGISTRY)/feast-core:$(VERSION) -f infra/docker/core/Dockerfile .
146135

147-
build-jobservice-docker:
148-
docker build -t $(REGISTRY)/feast-jobservice:$(VERSION) -f infra/docker/jobservice/Dockerfile .
149-
150136
build-serving-docker:
151137
docker build --build-arg VERSION=$(VERSION) -t $(REGISTRY)/feast-serving:$(VERSION) -f infra/docker/serving/Dockerfile .
152138

infra/docker/jobservice/Dockerfile

Lines changed: 0 additions & 30 deletions
This file was deleted.

infra/docker/tests/Dockerfile

Lines changed: 0 additions & 24 deletions
This file was deleted.

infra/scripts/azure-runner.sh

Lines changed: 0 additions & 65 deletions
This file was deleted.

infra/scripts/codebuild-entrypoint.sh

Lines changed: 0 additions & 157 deletions
This file was deleted.

0 commit comments

Comments
 (0)