Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/workflows/run-microbenchmarks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Run microbenchmarks on release
on:
release:
types: [published]
workflow_dispatch:
inputs:
release_tag:
description: 'Release tag to benchmark'
required: true
default: 'main'

jobs:
trigger:
runs-on: ubuntu-latest
steps:
- name: Trigger microbenchmarks workflow in ArmoniK.Microbench
env:
RELEASE_TAG: ${{ github.event.release.tag_name || github.event.inputs.release_tag }}
run: |
curl -X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${{ secrets.MICROBENCH_PAT }}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/aneoconsulting/ArmoniK.Microbench/dispatches \
-d '{"event_type":"trigger-microbenchmarks","client_payload":{"release_tag":"${{env.RELEASE_TAG}}"}}'
22 changes: 22 additions & 0 deletions microbenchmarks/parameters.tfvars
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
prefix = "armonik-microbench-workflow"
region = "us-east-1"
prefix = "default"


# Benchmark runner configuration
benchmark_runner = {
instance_type = "c7a.8xlarge"
}

# Benchmark configurations

# Redis
redis_benchmark = {
instance_type = "cache.m5.xlarge"
}

# EFS
efs_benchmark = {}

# S3
s3_benchmark = {}
Loading