Updated API models and rebuilt service gems. #1273
This file contains hidden or 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: | |
| - version-3 | |
| pull_request: | |
| branches: | |
| - version-3 | |
| permissions: | |
| id-token: write # required for OIDC | |
| contents: read | |
| 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 (except 2.5 - benchmarks missing) | |
| ruby: [2.6, 2.7, '3.0', 3.1, 3.2, 3.3, jruby-9.3, jruby-9.4] | |
| steps: | |
| - name: Setup Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby }} | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Install gems | |
| run: | | |
| bundle config set --local without 'development docs rbs repl' | |
| bundle install | |
| - name: Build SDK | |
| run: bundle exec rake build | |
| - name: Benchmark gems | |
| env: | |
| JRUBY_OPTS: -J-Xmx4g | |
| run: bundle exec rake benchmark:run | |
| - name: Configure AWS credentials | |
| uses: aws-actions/configure-aws-credentials@v4 | |
| continue-on-error: true | |
| with: | |
| role-to-assume: arn:aws:iam::373952703873:role/BenchmarkReporter | |
| role-session-name: benchmark-reporter | |
| aws-region: us-east-1 | |
| - name: Upload benchmark report | |
| if: ${{ env.AWS_ACCESS_KEY_ID != '' }} | |
| run: bundle exec rake benchmark:upload-report | |
| - name: Put benchmark metrics | |
| if: ${{ env.AWS_ACCESS_KEY_ID != '' }} | |
| run: bundle exec rake benchmark:put-metrics |