Skip to content

Commit

Permalink
Github Actions Build with more verbosity (#359)
Browse files Browse the repository at this point in the history
Set verbosity of `dotnet build` to normal
  • Loading branch information
dol-leodagan authored Nov 6, 2021
1 parent dcc95de commit dc39b76
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
run: |
$Env:DOTNET_CLI_TELEMETRY_OPTOUT=1
$assembly_version="$(cat release_info/version.txt)"
dotnet build -c "${{ matrix.build_target}}" -p:Version="$assembly_version" "Dawn of Light.sln"
dotnet build -c "${{ matrix.build_target}}" -p:Version="$assembly_version" "Dawn of Light.sln" --verbosity normal
- name: Test Build
run: |
dotnet test .\build\Tests\${{ matrix.build_target }}\lib\Tests.dll -v n --filter "DOL.UnitTests&TestCategory!=Explicit"
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
run: |
$Env:DOTNET_CLI_TELEMETRY_OPTOUT=1
$assembly_version="$(cat release_info/version.txt)"
dotnet build -c "${{ matrix.build_target}}" -p:Version="$assembly_version" "Net5\DOLdotnet.sln"
dotnet build -c "${{ matrix.build_target}}" -p:Version="$assembly_version" "Net5\DOLdotnet.sln" --verbosity normal
- name: Test Build
run: |
dotnet test .\Net5\build\Tests\${{ matrix.build_target }}\lib\Tests.dll -v n --filter "DOL.UnitTests&TestCategory!=Explicit"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test_runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
uses: actions/checkout@v2
- name: Build
run: |
dotnet build -c ${{ matrix.build_target }} "Net5/Tests/Tests.csproj"
dotnet build -c ${{ matrix.build_target }} "Net5/Tests/Tests.csproj" --verbosity normal
- name: Test
run: |
dotnet test ./Net5/build/Tests/${{ matrix.build_target }}/lib/Tests.dll -v n --filter "DOL.UnitTests&TestCategory!=Explicit"
Expand All @@ -37,7 +37,7 @@ jobs:
uses: actions/checkout@v2
- name: Build
run: |
dotnet build -c ${{ matrix.build_target }} "Net5/DOLdotnet.sln"
dotnet build -c ${{ matrix.build_target }} "Net5/DOLdotnet.sln" --verbosity normal
- name: Test
run: |
dotnet test .\Net5\build\Tests\${{ matrix.build_target }}\lib\Tests.dll -v n --filter "DOL.UnitTests&TestCategory!=Explicit"
Expand All @@ -53,7 +53,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: dotnet build -c ${{ matrix.build_target }} "Tests/Tests.csproj"
run: dotnet build -c ${{ matrix.build_target }} "Tests/Tests.csproj" --verbosity normal
- name: Test
run: |
dotnet test ./build/Tests/${{ matrix.build_target }}/lib/Tests.dll -v n --filter "DOL.UnitTests&TestCategory!=Explicit"
Expand All @@ -69,7 +69,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: dotnet build -c ${{ matrix.build_target }} "Tests\Tests.csproj"
run: dotnet build -c ${{ matrix.build_target }} "Tests\Tests.csproj" --verbosity normal
- name: Test
run: |
dotnet test .\build\Tests\${{ matrix.build_target }}\lib\Tests.dll -v n --filter "DOL.UnitTests&TestCategory!=Explicit"
Expand Down

0 comments on commit dc39b76

Please sign in to comment.