Skip to content

Commit 39b7d77

Browse files
trammelbethesquerea-jonpad
authored
feat: upgrade to travelling ruby 2.4.10 (#75)
* chore: upgdate travelling ruby version * chore: update bundler * chore: upgrade to last Travelling Ruby v2.4 Travelling ruby has deprecated support for linux-x86 (x86_64 is still supported), so that's been removed from the created packages. The naming convention for the Windows client has also changed, and that's fixed. * chore: retain old windows package name Instead of using the changed Traveling Ruby package name for win32 packages, we'll retain the old naming convention to make the packaging simpler for downstream systems. See #75 (comment) * chore: Lock json to version in 2.4.10 I don't know how it worked previously, but when building against ruby 2.2, the Gemfile.lock generated includes refernces to json-2.5.1, and bundler was quite happy to find it. This is extra weird, because json builds native extensions by default, something that doesn't work with cross-platform binaries. According to https://stdgems.org/2.4.10/, json is still included as a standard gem, but only up to version 2.0.4 When tring to check the created package, it's now failing though. ```shell $ BUNDLE_GEMFILE=lib/vendor/Gemfile lib/ruby/bin/bundle check The following gems are missing * json (2.5.1) Install missing gems with `bundle install` ``` A solution is to lock the JSON gem at the version provided by Ruby's standard libraries (https://stdgems.org/2.4.10/) Whether this is still cross-platform (bundler output does report building native extensions) is unknown. Co-authored-by: Beth Skurrie <[email protected]> Co-authored-by: Jonathon Padfield <[email protected]> Co-authored-by: Beth Skurrie <[email protected]>
1 parent 5aa27f3 commit 39b7d77

File tree

5 files changed

+24
-31
lines changed

5 files changed

+24
-31
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
- uses: ruby/setup-ruby@v1
1212
with:
13-
ruby-version: 2.2.10
13+
ruby-version: 2.4.10
1414

1515
- name: Set up environment
1616
run: bundle install

install.sh

-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@
77
#
88

99
case $(uname -sm) in
10-
'Linux x86')
11-
os='linux-x86'
12-
;;
1310
'Linux x86_64')
1411
os='linux-x86_64'
1512
;;

packaging/Gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ gem "pact-provider-verifier", "1.36.1"
77
gem "pact_broker-client", "1.64.0"
88
gem "webrick", "1.3.1" # Later versions require Ruby 2.3
99
gem "rack", "~>2.1.4"
10+
gem "json", "2.0.4"

packaging/Gemfile.lock

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ GEM
1515
httparty (0.18.1)
1616
mime-types (~> 3.0)
1717
multi_xml (>= 0.5.2)
18-
json (2.5.1)
18+
json (2.0.4)
1919
mime-types (3.4.1)
2020
mime-types-data (~> 3.2015)
2121
mime-types-data (3.2022.0105)
@@ -103,6 +103,7 @@ PLATFORMS
103103
ruby
104104

105105
DEPENDENCIES
106+
json (= 2.0.4)
106107
pact (= 1.62.0)
107108
pact-message (= 0.11.1)
108109
pact-mock_service (= 3.9.0)

tasks/package.rake

+20-26
Original file line numberDiff line numberDiff line change
@@ -3,38 +3,33 @@ require 'bundler/setup'
33

44
PACKAGE_NAME = "pact"
55
VERSION = File.read('VERSION').strip
6-
TRAVELING_RUBY_VERSION = "20150715-2.2.2"
6+
TRAVELING_RUBY_VERSION = "20210206-2.4.10"
77

8-
desc "Package pact-ruby-standalone for OSX, Linux x86 and Linux x86_64"
9-
task :package => ['package:linux:x86', 'package:linux:x86_64', 'package:osx', 'package:win32']
8+
desc "Package pact-ruby-standalone for OSX, Linux x86_64 and Win32 x86_64"
9+
task :package => ['package:linux:x86_64', 'package:osx', 'package:win32']
1010

1111
namespace :package do
1212
namespace :linux do
13-
desc "Package pact-ruby-standalone for Linux x86"
14-
task :x86 => [:bundle_install, "build/traveling-ruby-#{TRAVELING_RUBY_VERSION}-linux-x86.tar.gz"] do
15-
create_package(TRAVELING_RUBY_VERSION, "linux-x86")
16-
end
17-
1813
desc "Package pact-ruby-standalone for Linux x86_64"
1914
task :x86_64 => [:bundle_install, "build/traveling-ruby-#{TRAVELING_RUBY_VERSION}-linux-x86_64.tar.gz"] do
20-
create_package(TRAVELING_RUBY_VERSION, "linux-x86_64")
15+
create_package(TRAVELING_RUBY_VERSION, "linux-x86_64", "linux-x86_64", :unix)
2116
end
2217
end
2318

2419
desc "Package pact-ruby-standalone for OS X"
2520
task :osx => [:bundle_install, "build/traveling-ruby-#{TRAVELING_RUBY_VERSION}-osx.tar.gz"] do
26-
create_package(TRAVELING_RUBY_VERSION, "osx")
21+
create_package(TRAVELING_RUBY_VERSION, "osx", "osx", :unix)
2722
end
2823

29-
desc "Package pact-ruby-standalone for Windows x86"
30-
task :win32 => [:bundle_install, "build/traveling-ruby-#{TRAVELING_RUBY_VERSION}-win32.tar.gz"] do
31-
create_package(TRAVELING_RUBY_VERSION, "win32", :windows)
24+
desc "Package pact-ruby-standalone for Win32 x86_64"
25+
task :win32 => [:bundle_install, "build/traveling-ruby-#{TRAVELING_RUBY_VERSION}-win32-86_64.tar.gz"] do
26+
create_package(TRAVELING_RUBY_VERSION, "x86_64-win32", "win32", :windows)
3227
end
3328

3429
desc "Install gems to local directory"
3530
task :bundle_install do
36-
if RUBY_VERSION !~ /^2\.2\./
37-
abort "You can only 'bundle install' using Ruby 2.2, because that's what Traveling Ruby uses."
31+
if RUBY_VERSION !~ /^2\.4\./
32+
abort "You can only 'bundle install' using Ruby 2.4, because that's what Traveling Ruby uses."
3833
end
3934
sh "rm -rf build/tmp"
4035
sh "mkdir -p build/tmp"
@@ -59,10 +54,6 @@ namespace :package do
5954
end
6055
end
6156

62-
file "build/traveling-ruby-#{TRAVELING_RUBY_VERSION}-linux-x86.tar.gz" do
63-
download_runtime(TRAVELING_RUBY_VERSION, "linux-x86")
64-
end
65-
6657
file "build/traveling-ruby-#{TRAVELING_RUBY_VERSION}-linux-x86_64.tar.gz" do
6758
download_runtime(TRAVELING_RUBY_VERSION, "linux-x86_64")
6859
end
@@ -71,13 +62,13 @@ file "build/traveling-ruby-#{TRAVELING_RUBY_VERSION}-osx.tar.gz" do
7162
download_runtime(TRAVELING_RUBY_VERSION, "osx")
7263
end
7364

74-
file "build/traveling-ruby-#{TRAVELING_RUBY_VERSION}-win32.tar.gz" do
75-
download_runtime(TRAVELING_RUBY_VERSION, "win32")
65+
file "build/traveling-ruby-#{TRAVELING_RUBY_VERSION}-win32-86_64.tar.gz" do
66+
download_runtime(TRAVELING_RUBY_VERSION, "x86_64-win32")
7667
end
7768

78-
def create_package(version, target, os_type = :unix)
69+
def create_package(version, source_target, package_target, os_type)
7970
package_dir = "#{PACKAGE_NAME}"
80-
package_name = "#{PACKAGE_NAME}-#{VERSION}-#{target}"
71+
package_name = "#{PACKAGE_NAME}-#{VERSION}-#{package_target}"
8172
sh "rm -rf #{package_dir}"
8273
sh "mkdir #{package_dir}"
8374
sh "mkdir -p #{package_dir}/lib/app"
@@ -87,16 +78,19 @@ def create_package(version, target, os_type = :unix)
8778

8879
# sh "cp -pR lib #{package_dir}/lib/app"
8980
sh "mkdir #{package_dir}/lib/ruby"
90-
sh "tar -xzf build/traveling-ruby-#{version}-#{target}.tar.gz -C #{package_dir}/lib/ruby"
81+
sh "tar -xzf build/traveling-ruby-#{version}-#{source_target}.tar.gz -C #{package_dir}/lib/ruby"
9182
# From https://curl.se/docs/caextract.html
9283
sh "cp packaging/cacert.pem #{package_dir}/lib/ruby/lib/ca-bundle.crt"
9384

94-
if os_type == :unix
85+
case os_type
86+
when :unix
9587
Dir.chdir('packaging'){ Dir['pact*.sh'] }.each do | name |
9688
sh "cp packaging/#{name} #{package_dir}/bin/#{name.chomp('.sh')}"
9789
end
98-
else
90+
when :windows
9991
sh "cp packaging/pact*.bat #{package_dir}/bin"
92+
else
93+
raise "We don't serve their kind (#{os_type}) here!"
10094
end
10195

10296
sh "cp -pR build/vendor #{package_dir}/lib/"

0 commit comments

Comments
 (0)