Skip to content

Commit fb8ed02

Browse files
authored
Move Ethash to other nightly CI (#4114)
1 parent e80a921 commit fb8ed02

File tree

2 files changed

+25
-4
lines changed

2 files changed

+25
-4
lines changed

.github/workflows/other-nightly.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Ethash Nightly
2+
on:
3+
schedule:
4+
- cron: 0 1 * * *
5+
workflow_dispatch:
6+
7+
env:
8+
cwd: ${{github.workspace}}/packages/vm # Doesn't apper to matter
9+
10+
jobs:
11+
test-ethash:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v5
15+
16+
- uses: actions/setup-node@v4
17+
with:
18+
node-version: 20
19+
cache: 'npm'
20+
21+
- run: npm ci
22+
working-directory: ${{github.workspace}}
23+
24+
- run: npm run test
25+
working-directory: ${{ github.workspace }}/packages/ethash

.github/workflows/rlp-ethash-genesis-wallet-build.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,6 @@ jobs:
5656
- run: npm run coverage
5757
working-directory: ${{ github.workspace }}/packages/genesis
5858

59-
# Run coverage for ethash
60-
- run: npm run coverage
61-
working-directory: ${{ github.workspace }}/packages/ethash
62-
6359
# Run coverage for wallet
6460
- run: npm run coverage
6561
working-directory: ${{ github.workspace }}/packages/wallet

0 commit comments

Comments
 (0)