Skip to content

Commit 960313f

Browse files
committed
fix: drop traveling-ruby to 3.2.3 due to segfaults on alpine
1 parent 53b6151 commit 960313f

14 files changed

+45
-45
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v3
1414
- uses: ruby/setup-ruby@v1
1515
with:
16-
ruby-version: 3.3.0
16+
ruby-version: 3.2.3
1717
- name: Set up environment
1818
run: bundle install
1919
- name: Build

.github/workflows/manual_release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
- uses: ruby/setup-ruby@v1
3737
with:
38-
ruby-version: 3.3.0
38+
ruby-version: 3.2.3
3939

4040
- name: Set up environment
4141
run: |

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
- uses: ruby/setup-ruby@v1
1717
with:
18-
ruby-version: 3.3.0
18+
ruby-version: 3.2.3
1919

2020
- name: Set up environment
2121
run: |

.github/workflows/update.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
- uses: ruby/setup-ruby@v1
1717
with:
18-
ruby-version: 3.3.0
18+
ruby-version: 3.2.3
1919

2020
- name: Set up environment
2121
run: |

DEVELOPING.md

+15-15
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,15 @@ Script is designed to run on Linux, but can be run on macOS or windows.
5454
For windows x86_64
5555

5656
cd windows
57-
bash -c 'mkdir -p cache output/3.3.0'
58-
bash -c './build-ruby -a x86 -r 3.3.0 cache output/3.3.0'
59-
bash -c './package -r traveling-ruby-20230428-3.3.0-x86-windows.tar.gz output/3.3.0'
57+
bash -c 'mkdir -p cache output/3.2.3'
58+
bash -c './build-ruby -a x86 -r 3.2.3 cache output/3.2.3'
59+
bash -c './package -r traveling-ruby-20230428-3.2.3-x86-windows.tar.gz output/3.2.3'
6060

6161
For windows x86
6262

63-
bash -c 'mkdir -p cache output/3.3.0'
64-
bash -c './build-ruby -a x86_64 -r 3.3.0 cache output/3.3.0'
65-
bash -c './package -r traveling-ruby-20230428-3.3.0-x86_64-windows.tar.gz output/3.3.0'
63+
bash -c 'mkdir -p cache output/3.2.3'
64+
bash -c './build-ruby -a x86_64 -r 3.2.3 cache output/3.2.3'
65+
bash -c './package -r traveling-ruby-20230428-3.2.3-x86_64-windows.tar.gz output/3.2.3'
6666

6767
### Building the pact-ruby-standalone packages
6868

@@ -118,10 +118,10 @@ Build only selected platforms
118118
2. Copy your built `traveling-ruby` package into the `build` folder
119119
3. Ensure the version number in `tasks/package.rake` matches your package name
120120
1. eg
121-
1. `traveling-ruby-20230508-3.3.0-linux-arm64.tar.gz`
121+
1. `traveling-ruby-20230508-3.2.3-linux-arm64.tar.gz`
122122

123123
```ruby
124-
TRAVELING_RUBY_VERSION = "20230508-3.3.0"
124+
TRAVELING_RUBY_VERSION = "20230508-3.2.3"
125125
```
126126

127127
4. Run `bundle exec rake package` as before
@@ -130,13 +130,13 @@ Build only selected platforms
130130

131131
| OS | Ruby | Architecture | Supported |
132132
| -------| ------- | ------------ | --------- |
133-
| OSX | 3.3.0 | x86_64 ||
134-
| OSX | 3.3.0 | aarch64 (arm)||
135-
| Linux | 3.3.0 | x86_64 ||
136-
| Linux | 3.3.0 | aarch64 (arm)||
137-
| Windows| 3.3.0 | x86_64 ||
138-
| Windows| 3.3.0 | x86 ||
139-
| Windows| 3.3.0 | aarch64 (via x86 emulation) ||
133+
| OSX | 3.2.3 | x86_64 ||
134+
| OSX | 3.2.3 | aarch64 (arm)||
135+
| Linux | 3.2.3 | x86_64 ||
136+
| Linux | 3.2.3 | aarch64 (arm)||
137+
| Windows| 3.2.3 | x86_64 ||
138+
| Windows| 3.2.3 | x86 ||
139+
| Windows| 3.2.3 | aarch64 (via x86 emulation) ||
140140

141141
## Testing
142142

Dockerfile-bundle-base

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=linux/amd64 ruby:3.3.0-alpine
1+
FROM --platform=linux/amd64 ruby:3.2.3-alpine
22

33
# Installation path
44
ENV HOME=/app

Dockerfile-package-base

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=linux/amd64 ruby:3.3.0-slim
1+
FROM --platform=linux/amd64 ruby:3.2.3-slim
22

33
RUN apt-get update && apt-get install -y \
44
curl \

Dockerfile-release-base

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=linux/amd64 ruby:3.3.0-alpine
1+
FROM --platform=linux/amd64 ruby:3.2.3-alpine
22

33
# Installation path
44
ENV HOME=/app

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -46,17 +46,17 @@ See the [release page][releases].
4646

4747
## Supported Platforms
4848

49-
Ruby is not required on the host platform, Ruby 3.3.0 is provided in the distributable.
49+
Ruby is not required on the host platform, Ruby 3.2.3 is provided in the distributable.
5050

5151
| OS | Ruby | Architecture | Supported |
5252
| -------| ------- | ------------ | --------- |
53-
| MacOS | 3.3.0 | x86_64 ||
54-
| MacOS | 3.3.0 | aarch64 (arm64)||
55-
| Linux | 3.3.0 | x86_64 ||
56-
| Linux | 3.3.0 | aarch64 (arm64)||
57-
| Windows| 3.3.0 | x86_64 ||
58-
| Windows| 3.3.0 | x86 ||
59-
| Windows| 3.3.0 | aarch64 (arm64)| 🚧 |
53+
| MacOS | 3.2.3 | x86_64 ||
54+
| MacOS | 3.2.3 | aarch64 (arm64)||
55+
| Linux | 3.2.3 | x86_64 ||
56+
| Linux | 3.2.3 | aarch64 (arm64)||
57+
| Windows| 3.2.3 | x86_64 ||
58+
| Windows| 3.2.3 | x86 ||
59+
| Windows| 3.2.3 | aarch64 (arm64)| 🚧 |
6060

6161
🚧 - Tested under emulation mode x86 / x86_64 in Windows on ARM
6262

RELEASING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
Run:
44

5-
chruby 3.3.0 #or whatever your version manager is
5+
chruby 3.2.3 #or whatever your version manager is
66
script/release.sh [major|minor|patch] # default is minor

packaging/Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ gem "pact-provider-verifier", "1.38.0"
77
gem "pact_broker-client", "1.75.1"
88
gem "webrick", "1.8.1"
99
gem 'rack', '>= 2.2.6'
10-
gem "json", "2.7.1"
10+
gem "json", "2.6.3"

packaging/Gemfile.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ GEM
1616
httparty (0.21.0)
1717
mini_mime (>= 1.0.0)
1818
multi_xml (>= 0.5.2)
19-
json (2.7.1)
19+
json (2.6.3)
2020
mini_mime (1.1.5)
2121
multi_xml (0.6.0)
2222
net-http (0.4.1)
@@ -116,7 +116,7 @@ PLATFORMS
116116
x86_64-linux
117117

118118
DEPENDENCIES
119-
json (= 2.7.1)
119+
json (= 2.6.3)
120120
pact (= 1.64.0)
121121
pact-message (= 0.11.1)
122122
pact-mock_service (= 3.11.2)

packaging/README.md.template

+8-8
Original file line numberDiff line numberDiff line change
@@ -46,17 +46,17 @@ See the [release page][releases].
4646

4747
## Supported Platforms
4848

49-
Ruby is not required on the host platform, Ruby 3.3.0 is provided in the distributable.
49+
Ruby is not required on the host platform, Ruby 3.2.3 is provided in the distributable.
5050

5151
| OS | Ruby | Architecture | Supported |
5252
| -------| ------- | ------------ | --------- |
53-
| MacOS | 3.3.0 | x86_64 | ✅ |
54-
| MacOS | 3.3.0 | aarch64 (arm64)| ✅ |
55-
| Linux | 3.3.0 | x86_64 | ✅ |
56-
| Linux | 3.3.0 | aarch64 (arm64)| ✅ |
57-
| Windows| 3.3.0 | x86_64 | ✅ |
58-
| Windows| 3.3.0 | x86 | ✅ |
59-
| Windows| 3.3.0 | aarch64 (arm64)| 🚧 |
53+
| MacOS | 3.2.3 | x86_64 | ✅ |
54+
| MacOS | 3.2.3 | aarch64 (arm64)| ✅ |
55+
| Linux | 3.2.3 | x86_64 | ✅ |
56+
| Linux | 3.2.3 | aarch64 (arm64)| ✅ |
57+
| Windows| 3.2.3 | x86_64 | ✅ |
58+
| Windows| 3.2.3 | x86 | ✅ |
59+
| Windows| 3.2.3 | aarch64 (arm64)| 🚧 |
6060

6161
🚧 - Tested under emulation mode x86 / x86_64 in Windows on ARM
6262

tasks/package.rake

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

44
PACKAGE_NAME = "pact"
55
VERSION = File.read('VERSION').strip
6-
TRAVELING_RUBY_VERSION = "20240205-3.3.0"
6+
TRAVELING_RUBY_VERSION = "20240205-3.2.3"
77
TRAVELING_RUBY_PKG_DATE = TRAVELING_RUBY_VERSION.split("-").first
88
PLUGIN_CLI_VERSION = "0.1.0"
99

@@ -46,8 +46,8 @@ namespace :package do
4646
end
4747
desc "Install gems to local directory"
4848
task :bundle_install do
49-
if RUBY_VERSION !~ /^3\.3\./
50-
abort "You can only 'bundle install' using Ruby 3.3.0, because that's what Traveling Ruby uses."
49+
if RUBY_VERSION !~ /^3\.2\./
50+
abort "You can only 'bundle install' using Ruby 3.2.3, because that's what Traveling Ruby uses."
5151
end
5252
sh "rm -rf build/tmp"
5353
sh "mkdir -p build/tmp"

0 commit comments

Comments
 (0)