Skip to content

Commit

Permalink
Update prow config and makefile
Browse files Browse the repository at this point in the history
Signed-off-by: Terence <[email protected]>
  • Loading branch information
terryyylim committed Oct 5, 2020
1 parent 442ca5a commit 3933c31
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 71 deletions.
70 changes: 0 additions & 70 deletions .prow/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -209,48 +209,6 @@ presubmits:
branches:
- ^v0\.(3|4)-branch$

- name: test-end-to-end-batch
decorate: true
always_run: true
spec:
volumes:
- name: service-account
secret:
secretName: feast-service-account
containers:
- image: maven:3.6-jdk-11
command: ["infra/scripts/test-end-to-end-batch.sh"]
resources:
requests:
cpu: "6"
memory: "6144Mi"
volumeMounts:
- name: service-account
mountPath: "/etc/service-account"
skip_branches:
- ^v0\.(3|4)-branch$

- name: test-end-to-end-batch-fs-update
decorate: true
always_run: false
spec:
volumes:
- name: service-account
secret:
secretName: feast-service-account
containers:
- image: maven:3.6-jdk-11
command: ["infra/scripts/test-end-to-end-batch.sh", "-m", "fs_update"]
resources:
requests:
cpu: "6"
memory: "6144Mi"
volumeMounts:
- name: service-account
mountPath: "/etc/service-account"
skip_branches:
- ^v0\.(3|4)-branch$

- name: test-end-to-end-batch-java-8
decorate: true
always_run: true
Expand All @@ -272,34 +230,6 @@ presubmits:
branches:
- ^v0\.(3|4)-branch$

- name: test-end-to-end-batch-dataflow
decorate: true
always_run: true
spec:
volumes:
- name: service-account-df
secret:
secretName: feast-e2e-service-account
- name: docker-socket
hostPath:
path: /var/run/docker.sock
containers:
- image: google/cloud-sdk:302.0.0
command: ["infra/scripts/test-end-to-end-batch-dataflow.sh"]
resources:
requests:
cpu: "6"
memory: "6144Mi"
volumeMounts:
- name: service-account-df
mountPath: "/etc/service-account-df"
- name: docker-socket
mountPath: /var/run/docker.sock
securityContext:
privileged: true
skip_branches:
- ^v0\.(3|4)-branch$

postsubmits:
feast-dev/feast:
- name: publish-python-sdk
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ lint-python:
cd ${ROOT_DIR}/sdk/python; flake8 feast/ tests/
cd ${ROOT_DIR}/sdk/python; black --check feast tests

cd ${ROOT_DIR}/tests/e2e; mypy bq/ redis/
cd ${ROOT_DIR}/tests/e2e; mypy redis/
cd ${ROOT_DIR}/tests/e2e; isort . --check-only
cd ${ROOT_DIR}/tests/e2e; flake8 .
cd ${ROOT_DIR}/tests/e2e; black --check .
Expand Down

0 comments on commit 3933c31

Please sign in to comment.