Skip to content

Commit 064b1c1

Browse files
author
Moe Basim
committed
OCPBUGS-44257:fixing build s2i ruby test data inline with latest ruby 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])
1 parent 7aa9208 commit 064b1c1

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

test/extended/testdata/bindata.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
source "https://rubygems.org"
1+
source 'https://rubygems.org'
22

33
gem "rack"
44
gem "rackup"
5+
gem "webrick"

0 commit comments

Comments
 (0)