Skip to content

Commit

Permalink
Add debug build validation
Browse files Browse the repository at this point in the history
  • Loading branch information
smartprogrammer93 committed Jan 3, 2024
1 parent dbf551c commit 26deb68
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build-solutions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ defaults:

env:
BUILD_CONFIG: release
SECOND_BUILD_CONFIG: debug
DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION: 1
TERM: xterm

Expand Down Expand Up @@ -41,3 +42,9 @@ jobs:
run: dotnet build EthereumTests.sln -c ${{ env.BUILD_CONFIG }} --no-restore
- name: Build Benchmarks.sln
run: dotnet build Benchmarks.sln -c ${{ env.BUILD_CONFIG }} --no-restore
- name: Build Nethermind.sln
run: dotnet build Nethermind.sln -c ${{ env.SECOND_BUILD_CONFIG }} --no-restore
- name: Build EthereumTests.sln
run: dotnet build EthereumTests.sln -c ${{ env.SECOND_BUILD_CONFIG }} --no-restore
- name: Build Benchmarks.sln
run: dotnet build Benchmarks.sln -c ${{ env.SECOND_BUILD_CONFIG }} --no-restore

0 comments on commit 26deb68

Please sign in to comment.