sidekiq-pool 2.0.0 → 2.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/build_release_pipeline.yaml +27 -9
- data/.ruby-version +1 -1
- data/Gemfile.lock +2 -2
- data/lib/sidekiq/pool/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b48af9b55e63a374a5843de9295d3a56faf1e2a7cd8af3120963584818b4be48
|
4
|
+
data.tar.gz: 9b3c20e527f34b48da3459037a5a491722f5b6c934288bbbcf1203bb0d7e9100
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 433e5d5109862b240d7bb2fafb211164b2f4394d9ec49e094fb816cbb415be546d5f4c0561ede18665d2037a5c2c09ce4aa8b1d3518bdea9e4920a918965e5ad
|
7
|
+
data.tar.gz: c03c4008bfe19ec580f6e0d9f4a5743a6a9451ea6e864e5446657b11e78c0835ea6002ce50112e2344721795f5960cbfcdc06ba520afb94021380712deea2045
|
@@ -1,4 +1,4 @@
|
|
1
|
-
name:
|
1
|
+
name: Test, build, and release Ruby gem
|
2
2
|
|
3
3
|
on:
|
4
4
|
pull_request:
|
@@ -7,23 +7,42 @@ on:
|
|
7
7
|
workflow_dispatch:
|
8
8
|
|
9
9
|
jobs:
|
10
|
-
|
10
|
+
test:
|
11
11
|
runs-on: ubuntu-latest
|
12
|
-
|
12
|
+
strategy:
|
13
|
+
fail-fast: false
|
14
|
+
matrix:
|
15
|
+
ruby: [ '2.7', '3.0', '3.1' ]
|
13
16
|
steps:
|
14
17
|
- uses: actions/checkout@v2
|
18
|
+
- name: Setup Ruby
|
19
|
+
uses: ruby/setup-ruby@v1
|
20
|
+
with:
|
21
|
+
ruby-version: ${{ matrix.ruby }}
|
22
|
+
bundler-cache: true
|
15
23
|
- name: Setup
|
16
|
-
run: |
|
17
|
-
apt-get update -y && apt-get install -y --no-install-recommends cmake=3.13.4-1
|
18
|
-
gem install bundler
|
24
|
+
run: |
|
19
25
|
bundle install
|
20
|
-
|
21
26
|
- name: Test
|
22
27
|
run: bundle exec rake
|
28
|
+
|
29
|
+
build-release-pipeline:
|
30
|
+
runs-on: ubuntu-latest
|
31
|
+
needs: test
|
32
|
+
if: success() && github.ref == 'refs/heads/master'
|
33
|
+
steps:
|
34
|
+
- uses: actions/checkout@v2
|
35
|
+
- name: Setup Ruby
|
36
|
+
uses: ruby/setup-ruby@v1
|
37
|
+
with:
|
38
|
+
ruby-version: '2.7'
|
39
|
+
bundler-cache: true
|
40
|
+
- name: Setup
|
41
|
+
run: |
|
42
|
+
bundle install
|
23
43
|
|
24
44
|
- name: Build
|
25
45
|
id: build
|
26
|
-
if: success() && github.ref == 'refs/heads/master'
|
27
46
|
run: |
|
28
47
|
bundle exec rake build
|
29
48
|
echo "::set-output name=gem_version::v$(bundle exec rake version)"
|
@@ -51,4 +70,3 @@ jobs:
|
|
51
70
|
ref: "refs/tags/${{ steps.build.outputs.gem_version }}",
|
52
71
|
sha: context.sha
|
53
72
|
})
|
54
|
-
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.4
|
data/Gemfile.lock
CHANGED
data/lib/sidekiq/pool/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sidekiq-pool
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vinted
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-06-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sidekiq
|
@@ -129,7 +129,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
129
129
|
- !ruby/object:Gem::Version
|
130
130
|
version: '0'
|
131
131
|
requirements: []
|
132
|
-
rubygems_version: 3.1.
|
132
|
+
rubygems_version: 3.1.6
|
133
133
|
signing_key:
|
134
134
|
specification_version: 4
|
135
135
|
summary: Forks and manages multiple Sidekiq processes
|