Skip to content

Commit

Permalink
OCPBUGS-44257:fixing build s2i ruby test data inline with latest ruby…
Browse files Browse the repository at this point in the history
… version(>=3.0)

The test data for s2i image creation with source type as binary has issues post base image upgrade to ruby 3.0 (test/extended/testdata/builds/test-env-build.json) This is because webrick server is removed from default ruby libraries from 3.0 version,hence a webserver should be installed externally.The test data is missing this causing permanant failure post ruby 3.0 upgrade.

This fix is updating the test data with required dependencies to create a stable app to fulfill the testcase criteria.

signed-off by : moebasim([email protected])
  • Loading branch information
Moe Basim committed Dec 20, 2024
1 parent 7aa9208 commit 064b1c1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions test/extended/testdata/bindata.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
source "https://rubygems.org"
source 'https://rubygems.org'

gem "rack"
gem "rackup"
gem "webrick"

0 comments on commit 064b1c1

Please sign in to comment.