From cda0d8cc09ce66a8950397b67a22f5e5c0febc8f Mon Sep 17 00:00:00 2001 From: Yury-Fridlyand Date: Tue, 17 Sep 2024 13:04:52 -0700 Subject: [PATCH] Signed-off-by: Yury-Fridlyand --- .github/workflows/java.yml | 25 ++++++++++++++++++++----- .github/workflows/node.yml | 14 +++++++------- 2 files changed, 27 insertions(+), 12 deletions(-) diff --git a/.github/workflows/java.yml b/.github/workflows/java.yml index 98fe2fb772..a6f0243936 100644 --- a/.github/workflows/java.yml +++ b/.github/workflows/java.yml @@ -60,11 +60,11 @@ jobs: RUNNER: ubuntu-latest, TARGET: x86_64-unknown-linux-gnu } - # - { - # OS: macos, - # RUNNER: macos-latest, - # TARGET: aarch64-apple-darwin - # } + - { + OS: macos, + RUNNER: macos-latest, + TARGET: aarch64-apple-darwin + } runs-on: ${{ matrix.host.RUNNER }} @@ -94,6 +94,21 @@ jobs: with: 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: 10887052354 +# https://github.com/valkey-io/valkey-glide/actions/runs/10887052354 + + - 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 diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml index 720931fffa..a1d90f7182 100644 --- a/.github/workflows/node.yml +++ b/.github/workflows/node.yml @@ -69,13 +69,13 @@ jobs: with: node-version: 16.x - - name: Build Node wrapper - uses: ./.github/workflows/build-node-wrapper - with: - os: "ubuntu" - target: "x86_64-unknown-linux-gnu" - github-token: ${{ secrets.GITHUB_TOKEN }} - engine-version: ${{ matrix.engine.version }} +# - name: Build Node wrapper +# uses: ./.github/workflows/build-node-wrapper +# with: +# os: "ubuntu" +# target: "x86_64-unknown-linux-gnu" +# github-token: ${{ secrets.GITHUB_TOKEN }} +# engine-version: ${{ matrix.engine.version }} - name: test run: npm test