Skip to content

Commit

Permalink
Commented performance test to ensure the cache
Browse files Browse the repository at this point in the history
  • Loading branch information
jmmorato committed Oct 3, 2024
1 parent 1ad93e0 commit a899500
Showing 1 changed file with 19 additions and 18 deletions.
37 changes: 19 additions & 18 deletions .github/workflows/ci_standard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,12 +114,12 @@ jobs:
flag-name: coverage-windows-${{ join(matrix.*, '-') }}
fail-on-error: false

- name: Performance Test
shell: pwsh
run: |
dotnet publish ${{ github.workspace }}/Tests/BenchmarkPerformance/BenchmarkPerformance.csproj --configuration Release --framework net8.0 --runtime win-${{ matrix.BuildPlatform }}
${{ github.workspace }}/Tests/BenchmarkPerformance/bin/Release/net8.0/win-${{ matrix.BuildPlatform }}/publish/BenchmarkPerformance.exe 1
working-directory: ${{ github.workspace }}
# - name: Performance Test
# shell: pwsh
# run: |
# dotnet publish ${{ github.workspace }}/Tests/BenchmarkPerformance/BenchmarkPerformance.csproj --configuration Release --framework net8.0 --runtime win-${{ matrix.BuildPlatform }}
# ${{ github.workspace }}/Tests/BenchmarkPerformance/bin/Release/net8.0/win-${{ matrix.BuildPlatform }}/publish/BenchmarkPerformance.exe 1
# working-directory: ${{ github.workspace }}

build_linux:
runs-on: ubuntu-20.04
Expand Down Expand Up @@ -225,6 +225,7 @@ jobs:
dotnet build ${{ github.workspace }}/Tests/TestIdlCdr/TestIdlCdr.csproj --configuration Release --framework net8.0 --runtime linux-x64
dotnet build ${{ github.workspace }}/Tests/BenchmarkPerformance/BenchmarkPerformance.csproj --configuration Release --framework net8.0 --runtime linux-x64
dotnet publish ${{ github.workspace }}/Tests/BenchmarkPerformance/BenchmarkPerformance.csproj --configuration Release --framework net8.0 --runtime linux-x64
cd ${{ github.workspace }}/Tests/BenchmarkPerformance/bin/Release/net8.0/linux-x64/publish
${{ github.workspace }}/Tests/BenchmarkPerformance/bin/Release/net8.0/linux-x64/publish/BenchmarkPerformance 1
working-directory: ${{ github.workspace }}

Expand Down Expand Up @@ -390,12 +391,12 @@ jobs:
flag-name: coverage-macos-x64-Release
fail-on-error: false

- name: Performance Test
shell: pwsh
run: |
dotnet publish ${{ github.workspace }}/Tests/BenchmarkPerformance/BenchmarkPerformance.csproj --configuration Release --framework net8.0 --runtime osx-x64
${{ github.workspace }}/Tests/BenchmarkPerformance/bin/Release/net8.0/osx-x64/publish/BenchmarkPerformance 1
working-directory: ${{ github.workspace }}
# - name: Performance Test
# shell: pwsh
# run: |
# dotnet publish ${{ github.workspace }}/Tests/BenchmarkPerformance/BenchmarkPerformance.csproj --configuration Release --framework net8.0 --runtime osx-x64
# ${{ github.workspace }}/Tests/BenchmarkPerformance/bin/Release/net8.0/osx-x64/publish/BenchmarkPerformance 1
# working-directory: ${{ github.workspace }}

build_macos_arm64:
runs-on: macos-14
Expand Down Expand Up @@ -526,12 +527,12 @@ jobs:
flag-name: coverage-macos-arm64-Release
fail-on-error: false

- name: Performance Test
shell: pwsh
run: |
dotnet publish ${{ github.workspace }}/Tests/BenchmarkPerformance/BenchmarkPerformance.csproj --configuration Release --framework net8.0 --runtime osx-arm64
${{ github.workspace }}/Tests/BenchmarkPerformance/bin/Release/net8.0/osx-arm64/publish/BenchmarkPerformance 1
working-directory: ${{ github.workspace }}
# - name: Performance Test
# shell: pwsh
# run: |
# dotnet publish ${{ github.workspace }}/Tests/BenchmarkPerformance/BenchmarkPerformance.csproj --configuration Release --framework net8.0 --runtime osx-arm64
# ${{ github.workspace }}/Tests/BenchmarkPerformance/bin/Release/net8.0/osx-arm64/publish/BenchmarkPerformance 1
# working-directory: ${{ github.workspace }}

publish_coveralls:
runs-on: ubuntu-latest
Expand Down

0 comments on commit a899500

Please sign in to comment.