-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(cli): separate address command to tool
- Loading branch information
1 parent
c1ce512
commit ee01a01
Showing
11 changed files
with
731 additions
and
61 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -188,6 +188,38 @@ jobs: | |
run: | | ||
cargo nextest run --package astria-bridge-withdrawer -- --include-ignored | ||
# Specifically for tools other than the protobuf and solidity compilers which | ||
# are run as part of other steps. (only `tools/astria-address` for now). | ||
rust-tools: | ||
runs-on: buildjet-8vcpu-ubuntu-2204 | ||
needs: run_checker | ||
if: needs.run_checker.outputs.run_tests == 'true' | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: 'true' | ||
- uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: ${{ env.RUSTUP_TOOLCHAIN }} | ||
- uses: Swatinem/[email protected] | ||
with: | ||
cache-provider: "buildjet" | ||
- name: Install nextest | ||
uses: taiki-e/install-action@nextest | ||
- name: Build tests | ||
run: | | ||
cargo nextest archive \ | ||
--manifest-path tools/astria-address/Cargo.toml \ | ||
--archive-file=archive.tar.zst \ | ||
--release \ | ||
--all-features \ | ||
--all-targets \ | ||
- name: Run tests | ||
timeout-minutes: 20 | ||
run: | | ||
cargo nextest run --archive-file=archive.tar.zst | ||
doctest: | ||
runs-on: buildjet-8vcpu-ubuntu-2204 | ||
needs: run_checker | ||
|
@@ -280,7 +312,7 @@ jobs: | |
test: | ||
if: ${{ always() && !cancelled() }} | ||
needs: [compiles, protos-compiled, solidity-contracts-compiled, rust, doctest, clippy, lockfile, custom-lints] | ||
needs: [compiles, protos-compiled, solidity-contracts-compiled, rust, rust-tools, 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
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!-- markdownlint-disable no-duplicate-heading --> | ||
|
||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
### Added | ||
|
||
- Initial release [#1803](https://github.com/astriaorg/astria/pull/1803) |
Oops, something went wrong.