-
Notifications
You must be signed in to change notification settings - Fork 251
add evm test to ci #1422
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
add evm test to ci #1422
Changes from all commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
7b1730f
add evm test to ci
open-junius 28b63f7
update package.json
open-junius 53f0b10
install node in CI env
open-junius 5b14fda
install nodejs via apt
open-junius 291f041
add echo message
open-junius d572637
echo message
open-junius 66cb195
Merge branch 'devnet-ready' into add-evm-test-to-ci
open-junius e887437
just test evm
open-junius 0fb0fe9
wrong order in ci shell
open-junius 3e04bc0
add cmd to show log
open-junius d997997
quick try
open-junius 8180bf1
try script
open-junius 3707919
install nodejs in script
open-junius 784bf54
update script
open-junius f3a2931
add localnet back
open-junius d3bee56
revert localnet
open-junius 04a2f80
remove papi from package
open-junius a112014
reorg test case
open-junius cd7d517
fix tests
open-junius f42281a
fix type warning
open-junius 0d45d84
fix type warning
open-junius 6f56acf
fix type error
open-junius 302b653
remove temp file
open-junius aa63c28
remove log
open-junius af958c2
remove some comments
open-junius 893af1a
remove some comments
open-junius 3bb140b
try failure
open-junius 1db6489
back to normal
open-junius ccb3678
revert all flow
open-junius f52177f
Merge branch 'devnet-ready' into add-evm-test-to-ci
open-junius 2c4d4e8
clean up code
open-junius 5a6abc2
Merge branch 'devnet-ready' into add-evm-test-to-ci
open-junius c1d282c
change for comments in PR
open-junius 4d1b876
Merge remote-tracking branch 'origin/devnet-ready' into add-evm-test-…
sam0x17 2196ce8
add branch specification
open-junius f0f026a
enable evm test for all PRs
open-junius File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,44 @@ | ||
| name: EVM E2E Tests | ||
|
|
||
| on: | ||
| pull_request: | ||
|
|
||
| ## Allow running workflow manually from the Actions tab | ||
| workflow_dispatch: | ||
| inputs: | ||
| verbose: | ||
| description: "Output more information when triggered manually" | ||
| required: false | ||
| default: "" | ||
|
|
||
| env: | ||
| CARGO_TERM_COLOR: always | ||
| VERBOSE: ${{ github.events.input.verbose }} | ||
|
|
||
| jobs: | ||
| run: | ||
| runs-on: SubtensorCI | ||
| env: | ||
| RUST_BACKTRACE: full | ||
| steps: | ||
| - name: Check-out repository under $GITHUB_WORKSPACE | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Utilize Shared Rust Cache | ||
| uses: Swatinem/rust-cache@v2 | ||
|
|
||
| - name: Set up Node.js | ||
| uses: actions/setup-node@v2 | ||
| with: | ||
| node-version: "22" | ||
|
|
||
| - name: Install dependencies | ||
| run: | | ||
| sudo apt-get update && | ||
| sudo apt-get install -y clang curl libssl-dev llvm libudev-dev protobuf-compiler nodejs | ||
|
|
||
| - name: Run tests | ||
| working-directory: ${{ github.workspace }} | ||
| run: | | ||
| npm install --global yarn | ||
| ./evm-tests/run-ci.sh | ||
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.