Skip to content

Commit

Permalink
ci: install rocksdb dependencies in CI (#568)
Browse files Browse the repository at this point in the history
Release-As: 0.29.2
  • Loading branch information
holtgrewe authored Oct 8, 2024
1 parent 7fefaec commit c1dfe6f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@ jobs:
- uses: actions/checkout@v4
if: ${{ needs.release-please.outputs.release_created }}

- name: Install dependencies
run: |
sudo apt-get update -y
sudo apt-get install -y librocksdb-dev
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
if: ${{ needs.release-please.outputs.release_created }}
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ jobs:
with:
lfs: true

- name: Install dependencies
run: |
sudo apt-get update -y
sudo apt-get install -y librocksdb-dev
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
Expand Down Expand Up @@ -83,6 +88,11 @@ jobs:
with:
lfs: 'true'

- name: Install dependencies
run: |
sudo apt-get update -y
sudo apt-get install -y librocksdb-dev
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
Expand Down

0 comments on commit c1dfe6f

Please sign in to comment.