kettle-dev 1.1.26 → 1.1.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d5b1991c0a766cdf2ca22899493b377918b1c35904e8c7927e29c30ba927df02
4
- data.tar.gz: 9ba2c426beb96666c08ad9d0462162921456d48c8c2ce2ece0d302a62ab6574e
3
+ metadata.gz: 48545f8f9c5f1038e2da7c0d42f8f3bc19527fc13a86e6f15dabefdfc9ad002f
4
+ data.tar.gz: 51c810bc680047555ed09eaeaed37da6eeed85fe5336038bc7e43602263da9a6
5
5
  SHA512:
6
- metadata.gz: 1d688be0bf828e8d633970b38b37f0cc386afeb6718ddb7578f09f22f16ddd6e25b55b24978b14e9ba0d7e90f3aad4eef36fb394680f86e34195982e8f9d81f6
7
- data.tar.gz: eee66b8b680aea507855b8b6323769e2e9f4d297243f0ed17a84261798241749d76a565dcf18dc2ba6730717aeb7701515b353fa9520f7add4bd37f99f0924ef
6
+ metadata.gz: de5d434eca23c5ceca682a1961b7178b6dce3d6604844e0167b85f727b0ad2f259e51b3ffa461bfae7bc2590a1989ea350241c93d7c244b95dc4c390eb5a3f5d
7
+ data.tar.gz: eb0c76005b25f23357fbf410861a3fdb903dffe1ee8c32abad32052a3de28ec18643dac5599af7222ab7340b6f1dd9e0894622949729255d593e3f1ca83a8710
checksums.yaml.gz.sig CHANGED
Binary file
@@ -64,11 +64,11 @@ jobs:
64
64
 
65
65
  steps:
66
66
  - name: Checkout
67
- if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
67
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
68
68
  uses: actions/checkout@v5
69
69
 
70
70
  - name: Setup Ruby & RubyGems
71
- if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
71
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
72
72
  uses: ruby/setup-ruby@v1
73
73
  with:
74
74
  ruby-version: ${{ matrix.ruby }}
@@ -80,11 +80,37 @@ jobs:
80
80
  # We need to do this first to get appraisal installed.
81
81
  # NOTE: This does not use the primary Gemfile at all.
82
82
  - name: Install Root Appraisal
83
- if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
83
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
84
84
  run: bundle
85
- - name: Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}
86
- if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
85
+
86
+ - name: "[Attempt 1] Install Root Appraisal"
87
+ id: bundleAttempt1
88
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
89
+ run: bundle
90
+ # Continue to the next step on failure
91
+ continue-on-error: true
92
+
93
+ # Effectively an automatic retry of the previous step.
94
+ - name: "[Attempt 2] Install Root Appraisal"
95
+ id: bundleAttempt2
96
+ # If bundleAttempt1 failed, try again here; Otherwise skip.
97
+ if: ${{ steps.bundleAttempt1.outcome == 'failure' && !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
98
+ run: bundle
99
+
100
+ - name: "[Attempt 1] Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}"
101
+ id: bundleAppraisalAttempt1
102
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
103
+ run: bundle exec appraisal ${{ matrix.appraisal }} bundle
104
+ # Continue to the next step on failure
105
+ continue-on-error: true
106
+
107
+ # Effectively an automatic retry of the previous step.
108
+ - name: "[Attempt 2] Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}"
109
+ id: bundleAppraisalAttempt2
110
+ # If bundleAppraisalAttempt1 failed, try again here; Otherwise skip.
111
+ if: ${{ steps.bundleAppraisalAttempt1.outcome == 'failure' && !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
87
112
  run: bundle exec appraisal ${{ matrix.appraisal }} bundle
88
- - name: Tests for ${{ matrix.ruby }}@${{ matrix.appraisal }} via ${{ matrix.exec_cmd }}
89
- if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
113
+
114
+ - name: Tests for ${{ matrix.ruby }} via ${{ matrix.exec_cmd }}
115
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
90
116
  run: bundle exec appraisal ${{ matrix.appraisal }} bundle exec ${{ matrix.exec_cmd }}
@@ -63,11 +63,11 @@ jobs:
63
63
 
64
64
  steps:
65
65
  - name: Checkout
66
- if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
66
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
67
67
  uses: actions/checkout@v5
68
68
 
69
69
  - name: Setup Ruby & RubyGems
70
- if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
70
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
71
71
  uses: ruby/setup-ruby@v1
72
72
  with:
73
73
  ruby-version: ${{ matrix.ruby }}
@@ -79,11 +79,37 @@ jobs:
79
79
  # We need to do this first to get appraisal installed.
80
80
  # NOTE: This does not use the primary Gemfile at all.
81
81
  - name: Install Root Appraisal
82
- if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
82
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
83
83
  run: bundle
84
- - name: Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}
85
- if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
84
+
85
+ - name: "[Attempt 1] Install Root Appraisal"
86
+ id: bundleAttempt1
87
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
88
+ run: bundle
89
+ # Continue to the next step on failure
90
+ continue-on-error: true
91
+
92
+ # Effectively an automatic retry of the previous step.
93
+ - name: "[Attempt 2] Install Root Appraisal"
94
+ id: bundleAttempt2
95
+ # If bundleAttempt1 failed, try again here; Otherwise skip.
96
+ if: ${{ steps.bundleAttempt1.outcome == 'failure' && !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
97
+ run: bundle
98
+
99
+ - name: "[Attempt 1] Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}"
100
+ id: bundleAppraisalAttempt1
101
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
102
+ run: bundle exec appraisal ${{ matrix.appraisal }} bundle
103
+ # Continue to the next step on failure
104
+ continue-on-error: true
105
+
106
+ # Effectively an automatic retry of the previous step.
107
+ - name: "[Attempt 2] Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}"
108
+ id: bundleAppraisalAttempt2
109
+ # If bundleAppraisalAttempt1 failed, try again here; Otherwise skip.
110
+ if: ${{ steps.bundleAppraisalAttempt1.outcome == 'failure' && !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
86
111
  run: bundle exec appraisal ${{ matrix.appraisal }} bundle
87
- - name: Tests for ${{ matrix.ruby }}@${{ matrix.appraisal }} via ${{ matrix.exec_cmd }}
88
- if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
112
+
113
+ - name: Tests for ${{ matrix.ruby }} via ${{ matrix.exec_cmd }}
114
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
89
115
  run: bundle exec appraisal ${{ matrix.appraisal }} bundle exec ${{ matrix.exec_cmd }}
@@ -67,11 +67,11 @@ jobs:
67
67
 
68
68
  steps:
69
69
  - name: Checkout
70
- if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
70
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
71
71
  uses: actions/checkout@v5
72
72
 
73
73
  - name: Setup Ruby & RubyGems
74
- if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
74
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
75
75
  uses: ruby/setup-ruby@v1
76
76
  with:
77
77
  ruby-version: ${{ matrix.ruby }}
@@ -82,24 +82,38 @@ jobs:
82
82
  # Raw `bundle` will use the BUNDLE_GEMFILE set to matrix.gemfile (i.e. Appraisal.root)
83
83
  # We need to do this first to get appraisal installed.
84
84
  # NOTE: This does not use the primary Gemfile at all.
85
- - name: "Install Root Appraisal"
86
- if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
85
+ - name: Install Root Appraisal
86
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
87
87
  run: bundle
88
88
 
89
- - name: "[Attempt 1] Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}"
90
- if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
89
+ - name: "[Attempt 1] Install Root Appraisal"
91
90
  id: bundleAttempt1
91
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
92
+ run: bundle
93
+ # Continue to the next step on failure
94
+ continue-on-error: true
95
+
96
+ # Effectively an automatic retry of the previous step.
97
+ - name: "[Attempt 2] Install Root Appraisal"
98
+ id: bundleAttempt2
99
+ # If bundleAttempt1 failed, try again here; Otherwise skip.
100
+ if: ${{ steps.bundleAttempt1.outcome == 'failure' && !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
101
+ run: bundle
102
+
103
+ - name: "[Attempt 1] Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}"
104
+ id: bundleAppraisalAttempt1
105
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
92
106
  run: bundle exec appraisal ${{ matrix.appraisal }} bundle
93
107
  # Continue to the next step on failure
94
108
  continue-on-error: true
95
109
 
96
110
  # Effectively an automatic retry of the previous step.
97
111
  - name: "[Attempt 2] Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}"
98
- # If bundleAttempt1 failed, try again here; Otherwise skip.
99
- if: ${{ steps.bundleAttempt1.outcome == 'failure' && !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
100
- id: bundleAttempt2
112
+ id: bundleAppraisalAttempt2
113
+ # If bundleAppraisalAttempt1 failed, try again here; Otherwise skip.
114
+ if: ${{ steps.bundleAppraisalAttempt1.outcome == 'failure' && !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
101
115
  run: bundle exec appraisal ${{ matrix.appraisal }} bundle
102
116
 
103
- - name: Tests for ${{ matrix.ruby }}@${{ matrix.appraisal }} via ${{ matrix.exec_cmd }}
104
- if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
117
+ - name: Tests for ${{ matrix.ruby }} via ${{ matrix.exec_cmd }}
118
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
105
119
  run: bundle exec appraisal ${{ matrix.appraisal }} bundle exec ${{ matrix.exec_cmd }}
@@ -46,6 +46,7 @@ jobs:
46
46
  rubygems: default
47
47
  bundler: default
48
48
 
49
+ # # Turn back on once allow-failures is a feature of GHA.
49
50
  # # truffleruby-head
50
51
  # - ruby: "truffleruby-head"
51
52
  # appraisal: "head"
@@ -64,11 +65,11 @@ jobs:
64
65
 
65
66
  steps:
66
67
  - name: Checkout
67
- if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
68
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
68
69
  uses: actions/checkout@v5
69
70
 
70
71
  - name: Setup Ruby & RubyGems
71
- if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
72
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
72
73
  uses: ruby/setup-ruby@v1
73
74
  with:
74
75
  ruby-version: ${{ matrix.ruby }}
@@ -79,24 +80,38 @@ jobs:
79
80
  # Raw `bundle` will use the BUNDLE_GEMFILE set to matrix.gemfile (i.e. Appraisal.root)
80
81
  # We need to do this first to get appraisal installed.
81
82
  # NOTE: This does not use the primary Gemfile at all.
82
- - name: "Install Root Appraisal"
83
- if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
83
+ - name: Install Root Appraisal
84
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
84
85
  run: bundle
85
86
 
86
- - name: "[Attempt 1] Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}"
87
- if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
87
+ - name: "[Attempt 1] Install Root Appraisal"
88
88
  id: bundleAttempt1
89
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
90
+ run: bundle
91
+ # Continue to the next step on failure
92
+ continue-on-error: true
93
+
94
+ # Effectively an automatic retry of the previous step.
95
+ - name: "[Attempt 2] Install Root Appraisal"
96
+ id: bundleAttempt2
97
+ # If bundleAttempt1 failed, try again here; Otherwise skip.
98
+ if: ${{ steps.bundleAttempt1.outcome == 'failure' && !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
99
+ run: bundle
100
+
101
+ - name: "[Attempt 1] Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}"
102
+ id: bundleAppraisalAttempt1
103
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
89
104
  run: bundle exec appraisal ${{ matrix.appraisal }} bundle
90
105
  # Continue to the next step on failure
91
106
  continue-on-error: true
92
107
 
93
108
  # Effectively an automatic retry of the previous step.
94
109
  - name: "[Attempt 2] Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}"
95
- # If bundleAttempt1 failed, try again here; Otherwise skip.
96
- if: ${{ steps.bundleAttempt1.outcome == 'failure' && !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
97
- id: bundleAttempt2
110
+ id: bundleAppraisalAttempt2
111
+ # If bundleAppraisalAttempt1 failed, try again here; Otherwise skip.
112
+ if: ${{ steps.bundleAppraisalAttempt1.outcome == 'failure' && !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
98
113
  run: bundle exec appraisal ${{ matrix.appraisal }} bundle
99
114
 
100
- - name: Tests for ${{ matrix.ruby }}@${{ matrix.appraisal }} via ${{ matrix.exec_cmd }}
101
- if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
115
+ - name: Tests for ${{ matrix.ruby }} via ${{ matrix.exec_cmd }}
116
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
102
117
  run: bundle exec appraisal ${{ matrix.appraisal }} bundle exec ${{ matrix.exec_cmd }}
@@ -64,11 +64,11 @@ jobs:
64
64
 
65
65
  steps:
66
66
  - name: Checkout
67
- if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
67
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
68
68
  uses: actions/checkout@v5
69
69
 
70
70
  - name: Setup Ruby & RubyGems
71
- if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
71
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
72
72
  uses: ruby/setup-ruby@v1
73
73
  with:
74
74
  ruby-version: ${{ matrix.ruby }}
@@ -79,24 +79,38 @@ jobs:
79
79
  # Raw `bundle` will use the BUNDLE_GEMFILE set to matrix.gemfile (i.e. Appraisal.root)
80
80
  # We need to do this first to get appraisal installed.
81
81
  # NOTE: This does not use the primary Gemfile at all.
82
- - name: "Install Root Appraisal"
83
- if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
82
+ - name: Install Root Appraisal
83
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
84
84
  run: bundle
85
85
 
86
- - name: "[Attempt 1] Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}"
87
- if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
86
+ - name: "[Attempt 1] Install Root Appraisal"
88
87
  id: bundleAttempt1
88
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
89
+ run: bundle
90
+ # Continue to the next step on failure
91
+ continue-on-error: true
92
+
93
+ # Effectively an automatic retry of the previous step.
94
+ - name: "[Attempt 2] Install Root Appraisal"
95
+ id: bundleAttempt2
96
+ # If bundleAttempt1 failed, try again here; Otherwise skip.
97
+ if: ${{ steps.bundleAttempt1.outcome == 'failure' && !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
98
+ run: bundle
99
+
100
+ - name: "[Attempt 1] Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}"
101
+ id: bundleAppraisalAttempt1
102
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
89
103
  run: bundle exec appraisal ${{ matrix.appraisal }} bundle
90
104
  # Continue to the next step on failure
91
105
  continue-on-error: true
92
106
 
93
107
  # Effectively an automatic retry of the previous step.
94
108
  - name: "[Attempt 2] Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}"
95
- # If bundleAttempt1 failed, try again here; Otherwise skip.
96
- if: ${{ steps.bundleAttempt1.outcome == 'failure' && !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
97
- id: bundleAttempt2
109
+ id: bundleAppraisalAttempt2
110
+ # If bundleAppraisalAttempt1 failed, try again here; Otherwise skip.
111
+ if: ${{ steps.bundleAppraisalAttempt1.outcome == 'failure' && !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
98
112
  run: bundle exec appraisal ${{ matrix.appraisal }} bundle
99
113
 
100
- - name: Tests for ${{ matrix.ruby }}@${{ matrix.appraisal }} via ${{ matrix.exec_cmd }}
101
- if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
114
+ - name: Tests for ${{ matrix.ruby }} via ${{ matrix.exec_cmd }}
115
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
102
116
  run: bundle exec appraisal ${{ matrix.appraisal }} bundle exec ${{ matrix.exec_cmd }}
@@ -47,9 +47,11 @@ jobs:
47
47
 
48
48
  steps:
49
49
  - name: Checkout
50
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
50
51
  uses: actions/checkout@v5
51
52
 
52
53
  - name: Setup Ruby & RubyGems
54
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
53
55
  uses: ruby/setup-ruby@v1
54
56
  with:
55
57
  ruby-version: ${{ matrix.ruby }}
@@ -61,10 +63,12 @@ jobs:
61
63
  # We need to do this first to get appraisal installed.
62
64
  # NOTE: This does not use the primary Gemfile at all.
63
65
  - name: Install Root Appraisal
66
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
64
67
  run: bundle
65
68
 
66
69
  - name: "[Attempt 1] Install Root Appraisal"
67
70
  id: bundleAttempt1
71
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
68
72
  run: bundle
69
73
  # Continue to the next step on failure
70
74
  continue-on-error: true
@@ -73,11 +77,12 @@ jobs:
73
77
  - name: "[Attempt 2] Install Root Appraisal"
74
78
  id: bundleAttempt2
75
79
  # If bundleAttempt1 failed, try again here; Otherwise skip.
76
- if: steps.bundleAttempt1.outcome == 'failure'
80
+ if: ${{ steps.bundleAttempt1.outcome == 'failure' && !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
77
81
  run: bundle
78
82
 
79
83
  - name: "[Attempt 1] Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}"
80
84
  id: bundleAppraisalAttempt1
85
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
81
86
  run: bundle exec appraisal ${{ matrix.appraisal }} bundle
82
87
  # Continue to the next step on failure
83
88
  continue-on-error: true
@@ -85,9 +90,10 @@ jobs:
85
90
  # Effectively an automatic retry of the previous step.
86
91
  - name: "[Attempt 2] Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}"
87
92
  id: bundleAppraisalAttempt2
88
- # If bundleAttempt1 failed, try again here; Otherwise skip.
89
- if: steps.bundleAppraisalAttempt1.outcome == 'failure'
93
+ # If bundleAppraisalAttempt1 failed, try again here; Otherwise skip.
94
+ if: ${{ steps.bundleAppraisalAttempt1.outcome == 'failure' && !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
90
95
  run: bundle exec appraisal ${{ matrix.appraisal }} bundle
91
96
 
92
97
  - name: Tests for ${{ matrix.ruby }} via ${{ matrix.exec_cmd }}
98
+ if: ${{ !(env.ACT && (startsWith(matrix.ruby, 'jruby')) || startsWith(matrix.ruby, 'truffleruby')) }}
93
99
  run: bundle exec appraisal ${{ matrix.appraisal }} bundle exec ${{ matrix.exec_cmd }}
data/CHANGELOG.md CHANGED
@@ -22,18 +22,30 @@ Please file a bug if you notice a violation of semantic versioning.
22
22
 
23
23
  ### Changed
24
24
 
25
- - Use obfuscated URLs, and avatars from Open Collective in ReadmeBackers
26
-
27
25
  ### Deprecated
28
26
 
29
27
  ### Removed
30
28
 
31
29
  ### Fixed
32
30
 
33
- - fixed handling of kettle-release when checksums are present and unchanged causing the gem_checksums script to fail
34
-
35
31
  ### Security
36
32
 
33
+ ## [1.1.27] - 2025-09-20
34
+
35
+ - TAG: [v1.1.27][1.1.27t]
36
+ - COVERAGE: 96.33% -- 3860/4007 lines in 26 files
37
+ - BRANCH COVERAGE: 81.09% -- 1591/1962 branches in 26 files
38
+ - 79.12% documented
39
+
40
+ ### Changed
41
+
42
+ - Use obfuscated URLs, and avatars from Open Collective in ReadmeBackers
43
+
44
+ ### Fixed
45
+
46
+ - improved handling of flaky truffleruby builds in workflow templates
47
+ - fixed handling of kettle-release when checksums are present and unchanged causing the gem_checksums script to fail
48
+
37
49
  ## [1.1.25] - 2025-09-18
38
50
 
39
51
  - TAG: [v1.1.25][1.1.25t]
@@ -984,7 +996,9 @@ Please file a bug if you notice a violation of semantic versioning.
984
996
  - Selecting will run the selected workflow via `act`
985
997
  - This may move to its own gem in the future.
986
998
 
987
- [Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.26...HEAD
999
+ [Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.27...HEAD
1000
+ [1.1.27]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.25...v1.1.27
1001
+ [1.1.27t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.27
988
1002
  [1.1.26]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.25...v1.1.26
989
1003
  [1.1.26t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.26
990
1004
  [1.1.25]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.24...v1.1.25
data/README.md CHANGED
@@ -925,7 +925,7 @@ Thanks for RTFM. ☺️
925
925
  [📌gitmoji]:https://gitmoji.dev
926
926
  [📌gitmoji-img]:https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
927
927
  [🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
928
- [🧮kloc-img]: https://img.shields.io/badge/KLOC-1.225-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
928
+ [🧮kloc-img]: https://img.shields.io/badge/KLOC-4.007-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
929
929
  [🔐security]: SECURITY.md
930
930
  [🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
931
931
  [📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
data/README.md.example CHANGED
@@ -519,7 +519,7 @@ Thanks for RTFM. ☺️
519
519
  [📌gitmoji]:https://gitmoji.dev
520
520
  [📌gitmoji-img]:https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
521
521
  [🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
522
- [🧮kloc-img]: https://img.shields.io/badge/KLOC-1.225-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
522
+ [🧮kloc-img]: https://img.shields.io/badge/KLOC-4.007-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
523
523
  [🔐security]: SECURITY.md
524
524
  [🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
525
525
  [📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
data/Rakefile.example CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # kettle-dev Rakefile v1.1.26 - 2025-09-20
3
+ # kettle-dev Rakefile v1.1.27 - 2025-09-20
4
4
  # Ruby 2.3 (Safe Navigation) or higher required
5
5
  #
6
6
  # MIT License (see License.txt)
@@ -6,7 +6,7 @@ module Kettle
6
6
  module Version
7
7
  # The gem version.
8
8
  # @return [String]
9
- VERSION = "1.1.26"
9
+ VERSION = "1.1.27"
10
10
 
11
11
  module_function
12
12
 
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kettle-dev
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.26
4
+ version: 1.1.27
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter H. Boling
@@ -404,10 +404,10 @@ licenses:
404
404
  - MIT
405
405
  metadata:
406
406
  homepage_uri: https://kettle-dev.galtzo.com/
407
- source_code_uri: https://github.com/kettle-rb/kettle-dev/tree/v1.1.26
408
- changelog_uri: https://github.com/kettle-rb/kettle-dev/blob/v1.1.26/CHANGELOG.md
407
+ source_code_uri: https://github.com/kettle-rb/kettle-dev/tree/v1.1.27
408
+ changelog_uri: https://github.com/kettle-rb/kettle-dev/blob/v1.1.27/CHANGELOG.md
409
409
  bug_tracker_uri: https://github.com/kettle-rb/kettle-dev/issues
410
- documentation_uri: https://www.rubydoc.info/gems/kettle-dev/1.1.26
410
+ documentation_uri: https://www.rubydoc.info/gems/kettle-dev/1.1.27
411
411
  funding_uri: https://github.com/sponsors/pboling
412
412
  wiki_uri: https://github.com/kettle-rb/kettle-dev/wiki
413
413
  news_uri: https://www.railsbling.com/tags/kettle-dev
metadata.gz.sig CHANGED
Binary file