-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into joroshiba/breakup-rollup
* main: (24 commits) chore: update `bytes` and `ics23` crates (#1279) fix(sequencer): improve and fix instrumentation (#1255) feature(charts): hermes chart fixes, bech32 updates, ibc bridge test (#1130) chore(cli): remove unused rollup cli code (#1275) chore(test): use a temporary file to not pollute the workspace (#1269) chore(sequencer): add mempool benchmarks (#1238) fix(bridge-withdrawer)!: fix nonce handling (#1215) feat(cli, bridge-withdrawer)!: share code between cli and service (#1270) feat(cli): add cmd to collect withdrawal events and submit as actions (#1261) fix(core, bridge, sequencer)!: dismabiguate return addresses (#1266) fix(withdrawer): support withdrawer address that differs from bridge address (#1262) (core, sequencer)!: generate serde traits impls for all protocol protobufs (#1260) fix(charts): add resources for sequencer/cometbft (#1254) chore(sequencer)!: add metrics (#1248) fix(sequencer-utils): fixes issue in `parse_blob` tests (#1243) feat(core, proto)!: make bridge unlock memo string (#1244) fix(conductor): don't panic during panic (#1252) feat(core)!: lowerCamelCase for protobuf json mapping (#1250) refactor(bridge-withdrawer)!: refactor startup to a separate subtask and remove balance check from startup (#1190) fix: rollup archive node configurations (#1249) ...
- Loading branch information
Showing
164 changed files
with
11,591 additions
and
4,320 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,6 +44,31 @@ jobs: | |
exit 1 | ||
fi | ||
solidity-contracts-compiled: | ||
runs-on: ubuntu-22.04 | ||
needs: run_checker | ||
if: needs.run_checker.outputs.run_tests == 'true' | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install Rust toolchain | ||
uses: dtolnay/[email protected] | ||
- uses: Swatinem/[email protected] | ||
with: | ||
cache-provider: "buildjet" | ||
- name: Install just | ||
uses: taiki-e/install-action@just | ||
- name: Check if protobuf specs compile to commited Rust sources | ||
run: | | ||
just compile-solidity-contracts | ||
modified=$(git status --porcelain) | ||
if [[ -n "$modified" ]]; then | ||
echo "ERROR: solidity contracts are out of sync with the commited Rust sources" | ||
echo "Recompile locally with \`just compile-solidity-contracts\` and commit to the repository." | ||
echo "Files that reported differences:" | ||
echo "$modified" | ||
exit 1 | ||
fi | ||
compiles: | ||
runs-on: buildjet-4vcpu-ubuntu-2204 | ||
needs: run_checker | ||
|
@@ -232,7 +257,7 @@ jobs: | |
test: | ||
if: ${{ always() && !cancelled() }} | ||
needs: [compiles, protos-compiled, rust, doctest, clippy, lockfile, custom-lints] | ||
needs: [compiles, protos-compiled, solidity-contracts-compiled, rust, doctest, clippy, lockfile, custom-lints] | ||
uses: ./.github/workflows/reusable-success.yml | ||
with: | ||
success: ${{ !contains(needs.*.result, 'failure') }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[submodule "crates/astria-bridge-withdrawer/astria-bridge-contracts"] | ||
path = crates/astria-bridge-withdrawer/astria-bridge-contracts | ||
url = https://github.com/astriaorg/astria-bridge-contracts.git | ||
[submodule "crates/astria-bridge-contracts/astria-bridge-contracts"] | ||
path = crates/astria-bridge-contracts/astria-bridge-contracts | ||
url = https://github.com/astriaorg/astria-bridge-contracts |
Oops, something went wrong.