Skip to content

ci: replace python to $ISUCON_APP_LANG #28

ci: replace python to $ISUCON_APP_LANG

ci: replace python to $ISUCON_APP_LANG #28

Workflow file for this run

name: Benchmark
on:
workflow_dispatch:
push:
concurrency:
group: ${{ github.workflow }}-${{ github.sha }}
cancel-in-progress: true
jobs:
benchmark:
name: Run benchmark
runs-on: ubuntu-22.04
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
language:
- "crystal"
- "go"
- "nodejs"
- "php"
- "python"
- "python_sanic"
- "ruby"
steps:
- uses: actions/checkout@v2
- run: sed -i 's/python/'"$ISUCON_APP_LANG"'/g' ./docker-compose.yml && make build
env:
ISHOCON_APP_LANG: run_${{ matrix.language }}
- run: make up && sleep 10
- run: make bench
timeout-minutes: 5