Refactor benchmarking + fix related warnings and issues #1492
Workflow file for this run
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: Smithy Ruby Codegen CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
env: | |
java_version: 17 | |
ruby_version: 3.3 | |
jobs: | |
whitelabel-rbs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Java | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ env.java_version }} | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ env.ruby_version }} | |
- uses: actions/checkout@v4 | |
- name: Install gems | |
run: | | |
bundle config set --local without 'benchmark development docs' | |
bundle install | |
- name: Build the SDK | |
run: bundle exec rake codegen:build | |
- name: steep check | |
run: bundle exec rake steep:white_label | |
- name: rbs:test | |
run: bundle exec rake rbs:white_label | |
codegen-test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: [jruby-9.4, '3.0', 3.1, 3.2, 3.3] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- name: Setup Java | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ env.java_version }} | |
- name: Build SDK | |
run: bundle exec rake codegen:build | |
- name: WhiteLabel Integration tests | |
run: bundle exec rake test:white_label | |
- name: Smithy Core Endpoint Specs | |
run: bundle exec rake test:smithy-core-endpoint-tests | |
codegen-rubocop: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ env.ruby_version }} | |
bundler-cache: true | |
- name: Rubocop | |
run: bundle exec rake rubocop:codegen | |