Skip to content

Commit

Permalink
Remove ruby2.7 runtime (#615)
Browse files Browse the repository at this point in the history
  • Loading branch information
hnnasit authored Feb 7, 2024
1 parent 1c3a0d2 commit bb2fc45
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 6 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -310,9 +310,6 @@ jobs:
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.2"
- uses: ruby/setup-ruby@v1
with:
ruby-version: "2.7"
- run: make init
- run: pytest -vv tests/integration/workflows/ruby_bundler

Expand Down
1 change: 0 additions & 1 deletion aws_lambda_builders/validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
"python3.10": [ARM64, X86_64],
"python3.11": [ARM64, X86_64],
"python3.12": [ARM64, X86_64],
"ruby2.7": [ARM64, X86_64],
"ruby3.2": [ARM64, X86_64],
"java8": [ARM64, X86_64],
"java11": [ARM64, X86_64],
Expand Down
2 changes: 1 addition & 1 deletion aws_lambda_builders/workflows/ruby_bundler/DESIGN.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ bundle install --deployment

### sam build --use-container

This command would use some sort of container, such as `public.ecr.aws/sam/build-ruby2.7`.
This command would use some sort of container, such as `public.ecr.aws/sam/build-ruby3.2`.

```shell
# exit with error if vendor/bundle and/or .bundle directory exists and is non-empty
Expand Down
1 change: 0 additions & 1 deletion tests/integration/workflows/ruby_bundler/test_ruby.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
@parameterized_class(
("runtime",),
[
("ruby2.7",),
("ruby3.2",),
],
)
Expand Down

0 comments on commit bb2fc45

Please sign in to comment.