Skip to content

Commit

Permalink
Merge branch 'feat/add-ci-release' into ci/some-tests-workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sandhilt committed Oct 2, 2024
2 parents 01919a1 + 5a356e5 commit 71ca938
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
9 changes: 8 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,11 @@ tripa/*.txt
# Generated by mac
.DS_Store

.direnv/
# Generated by direnv
.direnv/
# .envrc

# Generated by VSCode
**/.vscode/

# *.nix
6 changes: 3 additions & 3 deletions Cross.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[target.riscv64gc-unknown-linux-gnu]
image = "ghcr.io/cross-rs/riscv64gc-unknown-linux-gnu:edge"
# add depency for reqwest that use openssl
# add depency for reqwest that use openssl and protobuf for celestia
pre-build = [
"dpkg --add-architecture $CROSS_DEB_ARCH",
"apt-get update && apt-get --assume-yes install libssl-dev:$CROSS_DEB_ARCH",
"apt-get update && apt-get --assume-yes install libssl-dev:$CROSS_DEB_ARCH protobuf-compiler",
]

[target.aarch64-unknown-linux-gnu]
image = "ghcr.io/cross-rs/aarch64-unknown-linux-gnu:edge"
# add depency for reqwest that use openssl
# add depency for reqwest that use openssl and protobuf for celestia
pre-build = [
"dpkg --add-architecture $CROSS_DEB_ARCH",
"apt-get update && apt-get --assume-yes install libssl-dev:$CROSS_DEB_ARCH protobuf-compiler",
Expand Down
1 change: 1 addition & 0 deletions message/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,7 @@ pub struct SubmitPointTransaction {
mod tests {
use alloy_core::sol_types::SolStruct;
use alloy_signer::SignerSync;
// use alloy_signer_wallet::LocalWallet;
use alloy_signer_local::PrivateKeySigner as LocalWallet;
use std::str::FromStr;

Expand Down
2 changes: 1 addition & 1 deletion tripa/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ tide-disco = "0.9"
es-version = { git = "https://github.com/EspressoSystems/es-version.git", branch = "main" }
celestia-rpc = { git = "https://github.com/eigerco/lumina" }
celestia-types = { git = "https://github.com/eigerco/lumina" }
hex = "0.4.3"
hex = "0.4.3"

0 comments on commit 71ca938

Please sign in to comment.