mirror of
https://github.com/pezkuwichain/revive-differential-tests.git
synced 2026-04-25 23:18:02 +00:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fd6b707687 | |||
| 9fd6a8d408 |
@@ -18,8 +18,8 @@ inputs:
|
|||||||
required: false
|
required: false
|
||||||
default: "main"
|
default: "main"
|
||||||
type: string
|
type: string
|
||||||
resolc-download-url:
|
resolc-path:
|
||||||
description: "The URL to use to download the resolc compiler."
|
description: "The path of the resolc compiler."
|
||||||
required: true
|
required: true
|
||||||
type: string
|
type: string
|
||||||
use-compilation-caches:
|
use-compilation-caches:
|
||||||
@@ -59,13 +59,6 @@ runs:
|
|||||||
ref: ${{ inputs['revive-differential-tests-ref'] }}
|
ref: ${{ inputs['revive-differential-tests-ref'] }}
|
||||||
path: revive-differential-tests
|
path: revive-differential-tests
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
- name: Installing the Latest Resolc
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
ASSET_URL="${{ inputs['resolc-download-url'] }}"
|
|
||||||
curl -Lsf --show-error -o resolc "$ASSET_URL"
|
|
||||||
chmod +x resolc
|
|
||||||
./resolc --version
|
|
||||||
- name: Installing Retester
|
- name: Installing Retester
|
||||||
shell: bash
|
shell: bash
|
||||||
run: ${{ inputs['cargo-command'] }} install --locked --path revive-differential-tests/crates/core
|
run: ${{ inputs['cargo-command'] }} install --locked --path revive-differential-tests/crates/core
|
||||||
@@ -120,7 +113,7 @@ runs:
|
|||||||
--revive-dev-node.path ${{ inputs['polkadot-sdk-path'] }}/target/release/revive-dev-node \
|
--revive-dev-node.path ${{ inputs['polkadot-sdk-path'] }}/target/release/revive-dev-node \
|
||||||
--eth-rpc.path ${{ inputs['polkadot-sdk-path'] }}/target/release/eth-rpc \
|
--eth-rpc.path ${{ inputs['polkadot-sdk-path'] }}/target/release/eth-rpc \
|
||||||
--polkadot-omni-node.path ${{ inputs['polkadot-sdk-path'] }}/target/release/polkadot-omni-node \
|
--polkadot-omni-node.path ${{ inputs['polkadot-sdk-path'] }}/target/release/polkadot-omni-node \
|
||||||
--resolc.path ./resolc \
|
--resolc.path ${{ inputs['resolc-path'] }} \
|
||||||
--resolc.heap-size 500000 \
|
--resolc.heap-size 500000 \
|
||||||
"${OMNI_ARGS[@]}" || true
|
"${OMNI_ARGS[@]}" || true
|
||||||
- name: Generate the expectation file
|
- name: Generate the expectation file
|
||||||
|
|||||||
@@ -32,8 +32,12 @@ pub enum PlatformIdentifier {
|
|||||||
/// The Lighthouse Go-ethereum reference full node EVM implementation with the solc compiler.
|
/// The Lighthouse Go-ethereum reference full node EVM implementation with the solc compiler.
|
||||||
LighthouseGethEvmSolc,
|
LighthouseGethEvmSolc,
|
||||||
/// The revive dev node with the PolkaVM backend with the resolc compiler.
|
/// The revive dev node with the PolkaVM backend with the resolc compiler.
|
||||||
|
#[strum(serialize = "revive-dev-node-polkavm-resolc", serialize = "pez-revive-dev-node-polkavm-resolc")]
|
||||||
|
#[serde(alias = "pez-revive-dev-node-polkavm-resolc")]
|
||||||
ReviveDevNodePolkavmResolc,
|
ReviveDevNodePolkavmResolc,
|
||||||
/// The revive dev node with the REVM backend with the solc compiler.
|
/// The revive dev node with the REVM backend with the solc compiler.
|
||||||
|
#[strum(serialize = "revive-dev-node-revm-solc", serialize = "pez-revive-dev-node-revm-solc")]
|
||||||
|
#[serde(alias = "pez-revive-dev-node-revm-solc")]
|
||||||
ReviveDevNodeRevmSolc,
|
ReviveDevNodeRevmSolc,
|
||||||
/// A zombienet based Substrate/Polkadot node with the PolkaVM backend with the resolc compiler.
|
/// A zombienet based Substrate/Polkadot node with the PolkaVM backend with the resolc compiler.
|
||||||
ZombienetPolkavmResolc,
|
ZombienetPolkavmResolc,
|
||||||
@@ -98,6 +102,8 @@ pub enum NodeIdentifier {
|
|||||||
/// The go-ethereum node implementation.
|
/// The go-ethereum node implementation.
|
||||||
LighthouseGeth,
|
LighthouseGeth,
|
||||||
/// The revive dev node implementation.
|
/// The revive dev node implementation.
|
||||||
|
#[strum(serialize = "revive-dev-node", serialize = "pez-revive-dev-node")]
|
||||||
|
#[serde(alias = "pez-revive-dev-node")]
|
||||||
ReviveDevNode,
|
ReviveDevNode,
|
||||||
/// A zombienet spawned nodes
|
/// A zombienet spawned nodes
|
||||||
Zombienet,
|
Zombienet,
|
||||||
|
|||||||
Reference in New Issue
Block a user