Skip to content

Commit

Permalink
ci: add github actions workflow to run benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
mickamy committed Dec 31, 2023
1 parent 97e58d3 commit 120e49c
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Benchmark

on:
workflow_dispatch:
push:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
benchmark:
name: Check isucoutea
runs-on: ubuntu-22.04
timeout-minutes: 60
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v2
- run: docker compose build
- run: docker compose up -d
timeout-minutes: 5
- run: docker exec -it ishocon2_bench_1 ./benchmark --ip app:443
timeout-minutes: 5

0 comments on commit 120e49c

Please sign in to comment.