-
Notifications
You must be signed in to change notification settings - Fork 86
fix(l1): fix hive daily workflow #3804
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
Conversation
Lines of code reportTotal lines added: Detailed view
|
@@ -85,7 +87,7 @@ jobs: | |||
fi | |||
|
|||
- name: Run Hive Simulation | |||
run: cd hive && ./hive --client-file ../fixtures/network/hive_clients/ethrex.yml --client ethrex --sim ${{ matrix.test.simulation }} --sim.parallelism 16 ${{ env.HIVE_FLAGS }} --sim.loglevel 1 | |||
run: cd hive && ./hive --client-file ../fixtures/network/hive_clients/ethrex.yml --client ethrex --sim ${{ matrix.test.simulation }} --sim.buildarg branch=${{ env.ETHEREUM_EXECUTION_SPEC_TEST_VERSION }} --sim.parallelism 16 ${{ env.HIVE_FLAGS }} --sim.loglevel 1 --docker.nocache "ethereum/eest/*" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why is --docker.nocache "ethereum/eest/*"
needed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The eest
tests were failing to read from cache the fixtures (Dockerfile) and the docker image for those simulators couldn't be built
This flag avoids that read, the image was built and the test finished running
@@ -85,7 +87,7 @@ jobs: | |||
fi | |||
|
|||
- name: Run Hive Simulation | |||
run: cd hive && ./hive --client-file ../fixtures/network/hive_clients/ethrex.yml --client ethrex --sim ${{ matrix.test.simulation }} --sim.parallelism 16 ${{ env.HIVE_FLAGS }} --sim.loglevel 1 | |||
run: cd hive && ./hive --client-file ../fixtures/network/hive_clients/ethrex.yml --client ethrex --sim ${{ matrix.test.simulation }} --sim.buildarg branch=${{ env.ETHEREUM_EXECUTION_SPEC_TEST_VERSION }} --sim.parallelism 16 ${{ env.HIVE_FLAGS }} --sim.loglevel 1 --docker.nocache "ethereum/eest/*" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems to overwrite @JereSalo HIVE_FLAGS
Closing in favor of #3833 |
Motivation
Some weeks ago the hive daily report stopped running
Description
The problem was that the Ethereum Execution Spec Test Repo wasn't pinned in the workflow, now it's pinned to the release v4.5.0. Also the
docker.nocache
flag was set for theeest
tests, without this flag there was a problem with the fixtures needed for the testsWith this changes the daily report work, but there amount of test that are being ran in the
Consume Engine test
has increase and there are failing tests, some test that used to work are no longer working. LinkCloses #3674