Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ jobs:
- run: pytest -vv tests/integration/workflows/python_uv

ruby-integration:
name: ${{ matrix.os }} / ${{ matrix.python }} / ruby
name: ${{ matrix.os }} / ${{ matrix.python }} / ruby ${{ matrix.ruby }}
if: github.repository_owner == 'aws'
runs-on: ${{ matrix.os }}
strategy:
Expand All @@ -323,14 +323,17 @@ jobs:
- windows-latest
python:
- "3.13"
ruby:
- "3.2"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

create for ruby3.2 is actually supposed to be deprecated April 30, can we remove this?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Based on what I see here function create is blocked 2026-08-31 and function update is blocked on 2026-09-30. My understanding is we usually don't remove runtimes until their update is blocked.

- "4.0"
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}
- uses: ruby/setup-ruby@4dc28cf14d77b0afa6832d9765ac422dbf0dfedd # v1
with:
ruby-version: "3.2"
ruby-version: ${{ matrix.ruby }}
- run: make init
- run: pytest -vv tests/integration/workflows/ruby_bundler

Expand Down
1 change: 1 addition & 0 deletions aws_lambda_builders/supported_runtimes.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"ruby3.2",
"ruby3.3",
"ruby3.4",
"ruby4.0",
]

# Java runtimes
Expand Down
1 change: 1 addition & 0 deletions tests/integration/workflows/ruby_bundler/test_ruby.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
("ruby3.2",),
("ruby3.3",),
("ruby3.4",),
("ruby4.0",),
],
)
class TestRubyWorkflow(TestCase):
Expand Down
Loading