Set different benchmarking path dirs #642
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Benchmark | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
permissions: | |
id-token: write # required for OIDC | |
contents: read | |
env: | |
java_version: 17 | |
jobs: | |
benchmark: | |
runs-on: ubuntu-latest | |
env: | |
GH_EVENT: ${{github.event_name}} | |
GH_REF: ${{github.head_ref}} | |
GH_REPO: ${{github.repository}} | |
EXECUTION_ENV: github-action | |
strategy: | |
fail-fast: false | |
matrix: | |
# Supported ruby versions | |
ruby: [jruby-9.4, '3.0', 3.1, 3.2, 3.3] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Setup Java | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'zulu' | |
java-version: ${{ env.java_version }} | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- name: Install gems | |
run: | | |
bundle config set --local with 'benchmark' | |
bundle install | |
- name: Build SDK | |
run: bundle exec rake codegen:build | |
- name: Benchmark gems | |
run: bundle exec rake benchmark:run | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: arn:aws:iam::373952703873:role/BenchmarkReporter | |
role-session-name: benchmark-reporter | |
aws-region: us-east-1 | |
- name: Upload benchmark report | |
run: bundle exec rake benchmark:upload-report | |
- name: Put benchmark metrics | |
run: bundle exec rake benchmark:put-metrics |