Skip to content
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

Feature/path based merkle tree (#30) #32

Open
wants to merge 13 commits into
base: state/base
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
31 changes: 19 additions & 12 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,39 @@
---
name: Bug report
about: Create a report to help us improve
about: Create a report to assist in improving our product
title: ''
labels: ''
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.
**Description**
Please provide a clear and concise description of the issue.

**To Reproduce**
Steps to reproduce the behavior:
**Steps to Reproduce**
In order to replicate the behavior, please provide a detailed list of steps:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Actual behavior**
Please describe the outcome that occurred as a result of executing the above steps, and explain why it is considered an issue.

**Expected behavior**
A clear and concise description of what you expected to happen.
Please provide a clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.
If applicable, please include screenshots to help illustrate the problem.

**Desktop (please complete the following information):**
- OS: [e.g. Windows]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]
Please provide the following information regarding your setup:
- Operating System: [e.g. Windows]
- Version: [e.g. 1.17.0]
- Installation Method: [e.g. GitHub Release/PPA/Homebrew/Docker]
- Consensus Client: [e.g. Lodestar v1.4.3]

**Additional context**
Add any other context about the problem here.
Please provide any additional context about the problem.

**Logs**
Please include any relevant logs that may help identify the issue.
31 changes: 28 additions & 3 deletions .github/workflows/build-solutions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,45 @@ defaults:

env:
BUILD_CONFIG: release
DOTNET_VERSION: 7
DOTNET_INSTALL_DIR: '~/.dotnet'

jobs:
build:
name: Build
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Cache dotnet
id: cache-dotnet
uses: actions/cache@v3
with:
path: ${{ env.DOTNET_INSTALL_DIR }}
key: ${{ runner.os }}-dotnet-${{ env.DOTNET_VERSION }}
restore-keys: ${{ runner.os }}-dotnet-${{ env.DOTNET_VERSION }}
- name: Set up .NET
if: ${{ steps.cache-dotnet.outputs.cache-hit != 'true' }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Install Apt Packages
uses: awalsh128/[email protected]
with:
packages: libsnappy-dev libc6-dev libc6
version: 1.0
- name: Check out repository
uses: actions/checkout@v3
with:
submodules: true
- name: Set up .NET
uses: actions/setup-dotnet@v3
- name: Cache nuget
id: cache-nuget
uses: actions/cache@v3
with:
dotnet-version: 7
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
restore-keys: |
${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
- name: Install dependencies
run: |
dotnet restore Nethermind.sln
Expand Down
23 changes: 20 additions & 3 deletions .github/workflows/code-formatting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,34 @@ on:
pull_request:
workflow_dispatch:

env:
BUILD_CONFIG: release
DOTNET_VERSION: 7
DOTNET_INSTALL_DIR: '~/.dotnet'

jobs:
spacing-check:
name: Check whitespaces
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Cache dotnet
id: cache-dotnet
uses: actions/cache@v3
with:
path: ${{ env.DOTNET_INSTALL_DIR }}
key: ${{ runner.os }}-dotnet-${{ env.DOTNET_VERSION }}
restore-keys: ${{ runner.os }}-dotnet-${{ env.DOTNET_VERSION }}
- name: Set up .NET
if: ${{ steps.cache-dotnet.outputs.cache-hit != 'true' }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Check out repository
uses: actions/checkout@v3
with:
submodules: true
- name: Format
run: |
dotnet format whitespace src/Nethermind/ --folder --verify-no-changes
Loading