Skip to content

Commit

Permalink
Signed-off-by: Yury-Fridlyand <[email protected]>
Browse files Browse the repository at this point in the history
  • Loading branch information
Yury-Fridlyand committed Sep 17, 2024
1 parent de08443 commit cda0d8c
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 12 deletions.
25 changes: 20 additions & 5 deletions .github/workflows/java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand Down Expand Up @@ -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:/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
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cda0d8c

Please sign in to comment.