Skip to content
Merged
Show file tree
Hide file tree
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 Mar 18, 2025
28b63f7
update package.json
open-junius Mar 18, 2025
53f0b10
install node in CI env
open-junius Mar 18, 2025
5b14fda
install nodejs via apt
open-junius Mar 18, 2025
291f041
add echo message
open-junius Mar 18, 2025
d572637
echo message
open-junius Mar 19, 2025
66cb195
Merge branch 'devnet-ready' into add-evm-test-to-ci
open-junius Apr 1, 2025
e887437
just test evm
open-junius Apr 1, 2025
0fb0fe9
wrong order in ci shell
open-junius Apr 1, 2025
3e04bc0
add cmd to show log
open-junius Apr 1, 2025
d997997
quick try
open-junius Apr 1, 2025
8180bf1
try script
open-junius Apr 1, 2025
3707919
install nodejs in script
open-junius Apr 1, 2025
784bf54
update script
open-junius Apr 1, 2025
f3a2931
add localnet back
open-junius Apr 1, 2025
d3bee56
revert localnet
open-junius Apr 1, 2025
04a2f80
remove papi from package
open-junius Apr 1, 2025
a112014
reorg test case
open-junius Apr 1, 2025
cd7d517
fix tests
open-junius Apr 2, 2025
f42281a
fix type warning
open-junius Apr 2, 2025
0d45d84
fix type warning
open-junius Apr 2, 2025
6f56acf
fix type error
open-junius Apr 2, 2025
302b653
remove temp file
open-junius Apr 2, 2025
aa63c28
remove log
open-junius Apr 2, 2025
af958c2
remove some comments
open-junius Apr 2, 2025
893af1a
remove some comments
open-junius Apr 2, 2025
3bb140b
try failure
open-junius Apr 3, 2025
1db6489
back to normal
open-junius Apr 3, 2025
ccb3678
revert all flow
open-junius Apr 3, 2025
f52177f
Merge branch 'devnet-ready' into add-evm-test-to-ci
open-junius Apr 3, 2025
2c4d4e8
clean up code
open-junius Apr 3, 2025
5a6abc2
Merge branch 'devnet-ready' into add-evm-test-to-ci
open-junius Apr 7, 2025
c1d282c
change for comments in PR
open-junius Apr 7, 2025
4d1b876
Merge remote-tracking branch 'origin/devnet-ready' into add-evm-test-…
sam0x17 Apr 7, 2025
2196ce8
add branch specification
open-junius Apr 8, 2025
f0f026a
enable evm test for all PRs
open-junius Apr 8, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions .github/workflows/evm-tests.yml
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
53 changes: 0 additions & 53 deletions evm-tests/local.test.ts

This file was deleted.

Loading
Loading