Skip to content

Commit f3ca4d2

Browse files
Merge remote-tracking branch 'upstream/main' into go/fix-return-types-5
Signed-off-by: Yury-Fridlyand <yury.fridlyand@improving.com>
2 parents 201d1f5 + b95fbbd commit f3ca4d2

26 files changed

+4135
-651
lines changed

.github/workflows/ort.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,17 @@ jobs:
158158
distribution: "temurin"
159159
java-version: 11
160160

161+
- name: Install protoc (protobuf)
162+
uses: arduino/setup-protoc@v3
163+
with:
164+
version: "29.1"
165+
repo-token: ${{ secrets.GITHUB_TOKEN }}
166+
167+
- name: Build java artifact
168+
working-directory: ./java
169+
run: |
170+
./gradlew publishToMavenLocal -x buildRust -x javadoc
171+
161172
- name: Run ORT tools for Java
162173
uses: ./.github/workflows/run-ort-tools
163174
with:

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
* Go: Add `ZCARD` ([#2838](https://github.com/valkey-io/valkey-glide/pull/2838))
1818
* Java, Node, Python: Update documentation for CONFIG SET and CONFIG GET ([#2919](https://github.com/valkey-io/valkey-glide/pull/2919))
1919
* Go: Add `BZPopMin` ([#2849](https://github.com/valkey-io/valkey-glide/pull/2849))
20+
* Java: Shadow `protobuf` dependency ([#2931](https://github.com/valkey-io/valkey-glide/pull/2931))
2021
* Java: Add `RESP2` support ([#2383](https://github.com/valkey-io/valkey-glide/pull/2383))
2122
* Node: Add `IFEQ` option ([#2909](https://github.com/valkey-io/valkey-glide/pull/2909))
2223

go/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,15 +82,15 @@ unit-test:
8282
mkdir -p reports
8383
set -o pipefail; \
8484
LD_LIBRARY_PATH=$(shell find . -name libglide_rs.so|grep -w release|tail -1|xargs dirname|xargs readlink -f):${LD_LIBRARY_PATH} \
85-
go test -v -race ./... -skip TestGlideTestSuite $(if $(test-filter), -run $(test-filter)) \
85+
go test -v -race ./... -skip TestGlideTestSuite $(if $(test-filter), -testify.m $(test-filter)) \
8686
| tee >(go tool test2json -t -p github.com/valkey-io/valkey-glide/go/glide/utils | go-test-report -o reports/unit-tests.html -t unit-test > /dev/null)
8787

8888
# integration tests - run subtask with skipping modules tests
89-
integ-test: export TEST_FILTER = -skip TestGlideTestSuite/TestModule $(if $(test-filter), -run $(test-filter))
89+
integ-test: export TEST_FILTER = -skip TestGlideTestSuite/TestModule $(if $(test-filter), -testify.m $(test-filter))
9090
integ-test: __it
9191

9292
# modules tests - run substask with default filter
93-
modules-test: export TEST_FILTER = $(if $(test-filter), -run $(test-filter), -run TestGlideTestSuite/TestModule)
93+
modules-test: export TEST_FILTER = $(if $(test-filter), -run $(test-filter), -testify.m TestGlideTestSuite/TestModule)
9494
modules-test: __it
9595

9696
__it:

0 commit comments

Comments
 (0)