Skip to content

Commit 32009fe

Browse files
erwanorhdevalenceavahowellzbucconorsch
authored
relayer: add support for penumbra (#4292)
* relayer: add support for penumbra Co-Authored-By: Henry de Valence <[email protected]> Co-Authored-By: Ava Howell <[email protected]> Co-Authored-By: Chris Czub <[email protected]> Co-Authored-By: Conor Schaefer <[email protected]> Co-Authored-By: noot <[email protected]> * cargo fmt + cargo clippy fix * codespell fix * Add required dependencies for Namada CI job --------- Co-authored-by: Henry de Valence <[email protected]> Co-authored-by: Ava Howell <[email protected]> Co-authored-by: Chris Czub <[email protected]> Co-authored-by: Conor Schaefer <[email protected]> Co-authored-by: noot <[email protected]> Co-authored-by: Luca Joss <[email protected]>
1 parent 9eee668 commit 32009fe

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+5400
-389
lines changed

.github/workflows/namada.yaml

+8-7
Original file line numberDiff line numberDiff line change
@@ -133,20 +133,21 @@ jobs:
133133
uses: jlumbroso/free-disk-space@main
134134
with:
135135
tool-cache: false
136+
- name: Install prerequisites # required for librocksdb-sys
137+
run: |
138+
sudo apt-get update
139+
sudo apt-get install -y \
140+
build-essential \
141+
clang \
142+
llvm-dev \
143+
libclang-dev
136144
- uses: actions/checkout@v4
137145
- name: Clone Namada
138146
uses: actions/checkout@v4
139147
with:
140148
repository: anoma/namada
141149
ref: v1.1.1
142150
path: namada
143-
- name: Add Swap Memory
144-
run: |
145-
sudo fallocate -l 4G /swapfile
146-
sudo chmod 600 /swapfile
147-
sudo mkswap /swapfile
148-
sudo swapon /swapfile
149-
free -h
150151
- name: Retrieve Namada repository path
151152
id: namada-repo-path
152153
run: |

0 commit comments

Comments
 (0)