Added test directory #44
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Garnet .NET CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
env: | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 | |
DOTNET_NOLOGO: true | |
ACTIONS_RUNNER_DEBUG: true | |
ACTIONS_STEP_DEBUG: true | |
jobs: | |
changes: | |
name: Check for changes | |
runs-on: ubuntu-latest # don't need matrix to test where the changes were made in code | |
permissions: | |
pull-requests: read | |
contents: read | |
outputs: | |
tsavorite: ${{ steps.filter.outputs.tsavorite }} | |
website: ${{ steps.filter.outputs.website }} | |
garnet: ${{ steps.filter.outputs.garnet }} | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Apply filter | |
uses: dorny/paths-filter@v3 | |
id: filter | |
with: | |
filters: | | |
tsavorite: | |
- 'libs/storage/Tsavorite/**' | |
website: | |
- 'website/**' | |
garnet: | |
- '!((*.md)|(website/**))' | |
# Job to build and test Garnet code | |
build-test-garnet: | |
name: Garnet | |
needs: changes | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest, windows-latest ] | |
framework: [ 'net6.0', 'net8.0' ] | |
configuration: [ 'Debug', 'Release' ] | |
test: [ 'Garnet.test', 'Garnet.cluster.test' ] | |
if: needs.changes.outputs.garnet == 'true' | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Format | |
run: dotnet format --verify-no-changes --verbosity diagnostic | |
- name: Build Garnet | |
run: dotnet build --configuration ${{ matrix.configuration }} | |
- name: Test Garnet | |
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: | |
name: dotnet-garnet-results-${{ matrix.os }}-${{ matrix.framework }}-${{ matrix.configuration }}-${{ matrix.test }} | |
path: GarnetTestResults-${{ matrix.os }}-${{ matrix.framework }}-${{ matrix.configuration }}-${{ matrix.test }} | |
if: ${{ always() }} | |
# Job to build and test Tsavorite code (only if there were changes to it) | |
build-test-tsavorite: | |
name: Tsavorite | |
needs: changes | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest, windows-latest ] | |
framework: [ 'net6.0', 'net8.0' ] | |
configuration: [ 'Debug', 'Release' ] | |
if: needs.changes.outputs.tsavorite == 'true' | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set environment variable for Linux | |
run: echo "RunAzureTests=yes" >> $GITHUB_ENV | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
- name: Set environment variable for Windows | |
run: echo ("RunAzureTests=yes") >> $env:GITHUB_ENV | |
if: ${{ matrix.os == 'windows-latest' }} | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Setup Node.js for Azurite | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Install and Run Azurite | |
shell: bash | |
run: | | |
npm install -g azurite | |
azurite & | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Format | |
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 | |
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 | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dotnet-tsavorite-results-${{ matrix.os }}-${{ matrix.framework }}-${{ matrix.configuration }} | |
path: TsavoriteTestResults-${{ matrix.os }}-${{ matrix.framework }}-${{ matrix.configuration }} | |
if: ${{ always() }} | |
build-website: | |
name: Build Website | |
needs: changes | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: website | |
if: needs.changes.outputs.website == 'true' | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: yarn | |
cache-dependency-path: ./website/yarn.lock | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Build website | |
run: yarn build | |
pipeline-success: | |
name: Garnet CI (Complete) | |
runs-on: ubuntu-latest | |
needs: [ build-test-garnet, build-test-tsavorite, build-website ] | |
steps: | |
- run: echo Done! | |
if: ${{ !(failure() || cancelled()) }} | |