Skip to content

Commit d1c02be

Browse files
authored
Merge pull request #218 from weaviate/grpc/add-dynamic-message-size-support
Grpc/add dynamic message size support
2 parents 8deab27 + 2fafb0b commit d1c02be

File tree

11 files changed

+1410
-60
lines changed

11 files changed

+1410
-60
lines changed

.github/workflows/main.yaml

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ on:
77
pull_request:
88

99
env:
10-
WEAVIATE_124: stable-v1.24-a8b364e
11-
WEAVIATE_125: 1.25.21
12-
WEAVIATE_126: 1.26.7
13-
WEAVIATE_127: 1.27.0
10+
WEAVIATE_124: 1.24.26
11+
WEAVIATE_125: 1.25.25
12+
WEAVIATE_126: 1.26.10
13+
WEAVIATE_127: 1.27.3
1414

1515
jobs:
1616
checks:
@@ -46,6 +46,12 @@ jobs:
4646
- uses: actions/setup-node@v3
4747
with:
4848
node-version: ${{ matrix.versions.node }}
49+
- name: Login to Docker Hub
50+
if: ${{ !github.event.pull_request.head.repo.fork && github.triggering_actor != 'dependabot[bot]' }}
51+
uses: docker/login-action@v3
52+
with:
53+
username: ${{secrets.DOCKER_USERNAME}}
54+
password: ${{secrets.DOCKER_PASSWORD}}
4955
- name: "Install dependencies"
5056
run: |
5157
npm ci
@@ -57,14 +63,12 @@ jobs:
5763
WCS_DUMMY_CI_PW: ${{ secrets.WCS_DUMMY_CI_PW }}
5864
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }}
5965
OKTA_CLIENT_SECRET: ${{ secrets.OKTA_CLIENT_SECRET }}
60-
run: |
61-
npm test
62-
npm run build
66+
run: WEAVIATE_VERSION=${{ matrix.versions.weaviate }} npm test
6367
- name: "Run tests without authentication tests (for forks)"
6468
if: ${{ github.event.pull_request.head.repo.fork }}
65-
run: |
66-
npm test
67-
npm run build
69+
run: WEAVIATE_VERSION=${{ matrix.versions.weaviate }} npm test
70+
- name: "Transpile the package"
71+
run: npm run build
6872
- name: "Stop Weaviate"
6973
run: ci/stop_dependencies.sh ${{ matrix.versions.weaviate }}
7074

0 commit comments

Comments
 (0)