Skip to content

Commit

Permalink
test rc 1.2
Browse files Browse the repository at this point in the history
Signed-off-by: Yury-Fridlyand <[email protected]>
  • Loading branch information
Yury-Fridlyand committed Nov 21, 2024
1 parent b8ccf86 commit 378d690
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/json_matrices/build-matrix.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"ARCH": "arm64",
"TARGET": "aarch64-apple-darwin",
"PACKAGE_MANAGERS": ["pypi", "npm", "maven"],
"run": "always",
"languages": ["python", "node", "java", "go", "dotnet"]
},
{
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,20 @@ jobs:
version: "26.1"
repo-token: ${{ secrets.GITHUB_TOKEN }}

- uses: actions/download-artifact@v4
with:
path: java/jars
merge-multiple: true
github-token: ${{ secrets.GITHUB_TOKEN }}
repository: valkey-io/valkey-glide
run-id: 11958068984
# https://github.com/valkey-io/valkey-glide/actions/runs/11958068984
- name: unpack RC
working-directory: java/jars
run: |
for file in bundle*.jar; do jar xf $file; done
tree .
- name: Build java client
working-directory: java
run: ./gradlew --continue build -x javadoc
Expand Down
3 changes: 2 additions & 1 deletion java/integTest/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
plugins {
id 'java-library'
id "com.google.osdetector" version "1.7.3"
}

repositories {
Expand All @@ -8,7 +9,7 @@ repositories {

dependencies {
// client
implementation project(':client')
implementation files("../jars/valkey-glide-v1.2.0-rc1-${osdetector.classifier}.jar")

implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.13.0'
implementation 'com.google.code.gson:gson:2.10.1'
Expand Down

0 comments on commit 378d690

Please sign in to comment.