From 521927ff4b4b476bb0433a047546b4ebc1a674cb Mon Sep 17 00:00:00 2001 From: darrenge Date: Mon, 30 Sep 2024 16:06:29 -0700 Subject: [PATCH] added extra parameters to benchmark --- .github/workflows/ci-bdnbenchmark.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-bdnbenchmark.yml b/.github/workflows/ci-bdnbenchmark.yml index eed614300c..4989e79696 100644 --- a/.github/workflows/ci-bdnbenchmark.yml +++ b/.github/workflows/ci-bdnbenchmark.yml @@ -34,10 +34,11 @@ jobs: strategy: fail-fast: false matrix: - os: [ ubuntu-latest, windows-latest ] + #ORIGINALos: [ ubuntu-latest, windows-latest ] + os: [ windows-latest ] framework: [ 'net8.0' ] configuration: [ 'Release' ] - #test: [ 'CI_BDN_Config_RespParseStress', 'CI_BDN_Config_RespTsavoriteStress', 'CI_BDN_Config_RespClusterBench', 'CI_BDN_Config_RespClusterMigrateBench', 'CI_BDN_Config_Lua' ] + #ORIGINAL test: [ 'CI_BDN_Config_RespParseStress', 'CI_BDN_Config_RespTsavoriteStress', 'CI_BDN_Config_RespClusterBench', 'CI_BDN_Config_RespClusterMigrateBench', 'CI_BDN_Config_Lua' ] test: [ 'CI_BDN_Config_RespParseStress' ] steps: - name: Check out code @@ -74,11 +75,12 @@ jobs: with: path: ./cache key: ${{ runner.os }}-benchmark + # Run `github-action-benchmark` action - name: Store benchmark result uses: benchmark-action/github-action-benchmark@v1 with: - # What benchmark tool the output.txt came from + # What benchmark tool created output file tool: 'benchmarkdotnet' # Where the output from the benchmark tool is stored # This can't find the file @@ -95,4 +97,7 @@ jobs: # Workflow will fail when an alert happens fail-on-alert: true - + github-token: ${{ secrets.GITHUB_TOKEN }} + auto-push: false + skip-fetch-gh-pages: true + summary-always: true