Skip to content

Commit

Permalink
Removed Debug code and updated some labels
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenge committed Mar 29, 2024
1 parent 458a8b6 commit b8dc7b9
Showing 1 changed file with 3 additions and 13 deletions.
16 changes: 3 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ on:
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_NOLOGO: true
ACTIONS_RUNNER_DEBUG: true
ACTIONS_STEP_DEBUG: true

jobs:
changes:
Expand Down Expand Up @@ -62,21 +60,13 @@ jobs:
dotnet-version: 8.0.x
- name: Install dependencies
run: dotnet restore
- name: Format
- name: Check style format
run: dotnet format --verify-no-changes --verbosity diagnostic
- name: Build Garnet
run: dotnet build --configuration ${{ matrix.configuration }}
- name: Test Garnet
- name: Run tests
run: dotnet test test/${{ matrix.test }} -f ${{ matrix.framework }} --logger "console;verbosity=detailed" --logger trx --results-directory "GarnetTestResults-${{ matrix.os }}-${{ matrix.framework }}-${{ matrix.configuration }}-${{ matrix.test }}"
timeout-minutes: 30
- name: DEBUG - List test result files and their sizes
run: dir "GarnetTestResults-${{ matrix.os }}-${{ matrix.framework }}-${{ matrix.configuration }}-${{ matrix.test }}"
- name: DEBUG - System Hard Drive space
run: wmic LogicalDisk where DriveType="3" get DeviceID,Size,FreeSpace
if: runner.os == 'Windows'
- name: DEBUG - System Available Memory
run: systeminfo | find "Available Physical Memory"
if: runner.os == 'Windows'
- name: Upload test results
uses: actions/upload-artifact@v4
with:
Expand Down Expand Up @@ -124,7 +114,7 @@ jobs:
run: dotnet format --verify-no-changes --verbosity diagnostic
- name: Build Tsavorite
run: dotnet build libs/storage/Tsavorite/cs/test/Tsavorite.test.csproj --configuration ${{ matrix.configuration }}
- name: Test Tsavorite
- name: Run Tsavorite tests
run: dotnet test libs/storage/Tsavorite/cs/test/Tsavorite.test.csproj -f ${{ matrix.framework }} --logger "console;verbosity=detailed" --logger trx --results-directory "TsavoriteTestResults-${{ matrix.os }}-${{ matrix.framework }}-${{ matrix.configuration }}"
timeout-minutes: 30
- name: Upload test results
Expand Down

0 comments on commit b8dc7b9

Please sign in to comment.