Co-authored-by: Marius A. Aardal <marius.andre.aardal@gmail.com> Co-authored-by: Gora Adj <gora.adj@tii.ae> Co-authored-by: Diego F. Aranha <dfaranha@cs.au.dk> Co-authored-by: Andrea Basso <sqisign@andreabasso.com> Co-authored-by: Isaac Andrés Canales Martínez <icanalesm0500@gmail.com> Co-authored-by: Jorge Chávez-Saab <jorgechavezsaab@gmail.com> Co-authored-by: Maria Corte-Real Santos <mariascrsantos98@gmail.com> Co-authored-by: Luca De Feo <github@defeo.lu> Co-authored-by: Max Duparc <max.duparc@epfl.ch> Co-authored-by: Jonathan Komada Eriksen <jonathan.eriksen97@gmail.com> Co-authored-by: Décio Luiz Gazzoni Filho <decio@decpp.net> Co-authored-by: Basil Hess <bhe@zurich.ibm.com> Co-authored-by: Antonin Leroux <antonin.leroux@polytechnique.org> Co-authored-by: Patrick Longa <plonga@microsoft.com> Co-authored-by: Luciano Maino <mainoluciano.96@gmail.com> Co-authored-by: Michael Meyer <michael@random-oracles.org> Co-authored-by: Hiroshi Onuki <onuki@mist.i.u-tokyo.ac.jp> Co-authored-by: Lorenz Panny <lorenz@yx7.cc> Co-authored-by: Giacomo Pope <giacomopope@gmail.com> Co-authored-by: Krijn Reijnders <reijnderskrijn@gmail.com> Co-authored-by: Damien Robert <damien.robert@inria.fr> Co-authored-by: Francisco Rodríguez-Henriquez <francisco.rodriguez@tii.ae> Co-authored-by: Sina Schaeffler <sschaeffle@student.ethz.ch> Co-authored-by: Benjamin Wesolowski <benjamin.wesolowski@ens-lyon.fr>
61 lines
2.0 KiB
YAML
61 lines
2.0 KiB
YAML
name: Benchmarks (Daily Workflow, manual trigger)
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
commit_sha:
|
|
description: 'The commit SHA to run the workflow on'
|
|
required: true
|
|
type: string
|
|
|
|
env:
|
|
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
|
|
BUILD_TYPE: Release
|
|
|
|
jobs:
|
|
benchmarks:
|
|
# The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac.
|
|
strategy:
|
|
matrix:
|
|
platform: [x64, arm64]
|
|
toolchain: [""]
|
|
sqisign_build_type: [ref]
|
|
include:
|
|
- platform: x64
|
|
toolchain: ""
|
|
sqisign_build_type: broadwell
|
|
sqisign_test_reps: 10
|
|
- platform: x64
|
|
toolchain: .cmake/32bit.cmake
|
|
sqisign_build_type: ref
|
|
sqisign_test_reps: 10
|
|
|
|
runs-on: [self-hosted, "${{ matrix.platform }}"]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ github.event.inputs.commit_sha }}
|
|
|
|
- name: Configure CMake
|
|
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
|
|
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
|
|
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DSQISIGN_BUILD_TYPE=${{ matrix.sqisign_build_type }} ${{ matrix.toolchain && format('-DCMAKE_TOOLCHAIN_FILE={0}', matrix.toolchain) || '' }}
|
|
|
|
- name: Build
|
|
# Build your program with the given configuration
|
|
run: |
|
|
if [ -n "${{ matrix.toolchain }}" ]; then
|
|
cp ~/gmp-6.3.0.tar.xz ${{github.workspace}}/build/libgmp/src
|
|
fi
|
|
cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
|
|
|
|
- name: Run benchmarks in apps folder
|
|
run: |
|
|
build/apps/benchmark_lvl1 50
|
|
build/apps/benchmark_lvl3 20
|
|
build/apps/benchmark_lvl5 10
|
|
|
|
- name: Run Benchmarks (make bm)
|
|
run: cd build && make bm
|