Skip to content

Commit

Permalink
* add benchmark upload for all builds
Browse files Browse the repository at this point in the history
  • Loading branch information
eukarpov committed Aug 14, 2023
1 parent 7208d6a commit 222f56f
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions .github/workflows/ci-arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,14 @@ jobs:
call .github\workflows\scripts\benchmark.bat 2> benchmark.txt
type benchmark.txt
- name: Archive build-openssl-windows-arm64-msvc.zip
uses: actions/upload-artifact@v3
if: ${{ inputs.benchmark_snapshot }}
with:
name: build-openssl-windows-arm64-msvc.zip
path: benchmark.txt
retention-days: 1

build-openssl-windows-arm64-clangcl:
if: ${{ inputs.openssl_windows_arm64_clangcl_build }}

Expand Down Expand Up @@ -91,6 +99,14 @@ jobs:
call .github\workflows\scripts\benchmark.bat 2> benchmark.txt
type benchmark.txt
- name: Archive build-openssl-windows-arm64-clangcl.zip
uses: actions/upload-artifact@v3
if: ${{ inputs.benchmark_snapshot }}
with:
name: build-openssl-windows-arm64-clangcl.zip
path: benchmark.txt
retention-days: 1

build-openssl-linux-aarch64-gcc:
if: ${{ inputs.openssl_linux_aarch64_gcc_build }}

Expand All @@ -113,10 +129,10 @@ jobs:
.github/workflows/scripts/benchmark.sh > benchmark.txt 2>&1
cat benchmark.txt
- name: Archive openssl-linux-aarch64-gcc-benchmark.txt
- name: Archive openssl-linux-aarch64-gcc-benchmark.zip
uses: actions/upload-artifact@v3
if: ${{ inputs.benchmark_snapshot }}
with:
name: openssl-linux-aarch64-gcc-benchmark.txt
name: openssl-linux-aarch64-gcc-benchmark.zip
path: benchmark.txt
retention-days: 1

0 comments on commit 222f56f

Please sign in to comment.