Improve awsQueryCompatible support for JSON and CBOR #1318
Workflow file for this run
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 | |
| pull-requests: write | |
| 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 | |
| - name: Check for Performance Regressions | |
| if: ${{ env.AWS_ACCESS_KEY_ID != '' }} | |
| id: regressions | |
| run: bundle exec rake benchmark:check-regressions | |
| - name: Comment on PR | |
| if: ${{ github.event_name == 'pull_request' && steps.regressions.outputs.message }} | |
| uses: thollander/actions-comment-pull-request@main | |
| with: | |
| message: ${{ steps.regressions.outputs.message }} | |
| comment_tag: performance-regression | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |