cirun 0.1.19 → 0.2.0
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 +4 -4
- data/lib/cirun/cli.rb +14 -0
- data/lib/cirun/runner.rb +11 -13
- data/lib/cirun/variants.rb +2 -2
- data/lib/cirun/version.rb +1 -1
- metadata +7 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4c6eed1d57e126acc72368ae5e6c577eed525ba100186a0838ca71a2875f34dc
|
4
|
+
data.tar.gz: 8e7757edbf1f89e2da5ecab851ae101d2d25eb12242e77768debc6b56a30e894
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 33f0ea73fd614c8c0bc7c658b95aaddf6bac8d26885a85f50087bd4df4da6a552aaeea5811ecbb767741b4c1ea58148bb7f4d04e437889f2af445b7b1fc939dc
|
7
|
+
data.tar.gz: c00dc21bb1938b1b4f92268e03985ddabc2127307f203b163d6ef990aeea291aef377f3b98f3bd1041af693aeb67ff7a92299228ad873d7ec7bb018ed75aacbd
|
data/lib/cirun/cli.rb
CHANGED
@@ -13,6 +13,7 @@ module Cirun
|
|
13
13
|
@options.ruby = ''
|
14
14
|
@options.plugin = ''
|
15
15
|
@options.dependent = ''
|
16
|
+
@options.print = false
|
16
17
|
end
|
17
18
|
|
18
19
|
def parse
|
@@ -33,6 +34,19 @@ module Cirun
|
|
33
34
|
opts.on('-e', '--dependent DEPENDENT', "Specify plugin dependency") do |dependent|
|
34
35
|
@options.dependent = dependent
|
35
36
|
end
|
37
|
+
opts.on(
|
38
|
+
'-i',
|
39
|
+
'--interactive',
|
40
|
+
'Instead of executing docker for you this will just print',
|
41
|
+
' required command string to the standard output.',
|
42
|
+
' This is useful when you want to run interactive',
|
43
|
+
' debug session. Docker CLI is very hard to trick',
|
44
|
+
' so with this option you can just backtick output',
|
45
|
+
' like: `cirun -d mysql -m 2.3 -r 1.9.3-p551 -i`'
|
46
|
+
) do
|
47
|
+
@options.print = true
|
48
|
+
end
|
49
|
+
|
36
50
|
end.parse!
|
37
51
|
|
38
52
|
validate_options || abort_due_to_lack_of_options
|
data/lib/cirun/runner.rb
CHANGED
@@ -1,5 +1,4 @@
|
|
1
1
|
require 'open3'
|
2
|
-
require 'tty-command'
|
3
2
|
|
4
3
|
module Cirun
|
5
4
|
class Runner
|
@@ -8,33 +7,32 @@ module Cirun
|
|
8
7
|
end
|
9
8
|
|
10
9
|
def update_image
|
11
|
-
puts "Pulling
|
12
|
-
cmd = "docker pull
|
13
|
-
execute(cmd)
|
10
|
+
puts "Pulling registry.redminecrm.com/docker/#{@opts.plugin}, please wait" unless @opts.print
|
11
|
+
cmd = "docker pull registry.redminecrm.com/docker/#{@opts.plugin}"
|
12
|
+
execute(cmd, @opts.print)
|
14
13
|
end
|
15
14
|
|
16
15
|
def run
|
17
16
|
update_image
|
18
17
|
ruby_short = @opts.ruby.split('-').first
|
19
|
-
cmd = "docker run
|
20
|
-
|
18
|
+
cmd = "docker run -#{@opts.print ? 'i' : ''}t --env RUBY_VERSION=ruby-#{ruby_short} --env DB=#{@opts.database} --env REDMINE=redmine-#{@opts.redmine} --env PLUGIN=#{@opts.plugin} --env DEPENDENT=#{@opts.dependent} --mount type=bind,source=#{`pwd`.chomp},target=/var/www/ruby-#{ruby_short}/#{@opts.database}/redmine-#{@opts.redmine}/plugins/#{@opts.plugin} registry.redminecrm.com/docker/#{@opts.plugin} /root/run_local.sh"
|
19
|
+
@opts.print ? print(cmd) : execute(cmd)
|
21
20
|
end
|
22
21
|
|
23
22
|
private
|
24
23
|
|
25
|
-
def execute(cmd)
|
26
|
-
puts "Running:\n#{cmd}"
|
24
|
+
def execute(cmd, silently = false)
|
25
|
+
puts "Running:\n#{cmd}" unless silently
|
27
26
|
Open3.popen3(cmd) do |stdin, stdout, stderr|
|
28
27
|
while (line = stdout.gets)
|
29
|
-
puts line
|
28
|
+
puts line unless silently
|
30
29
|
end
|
31
|
-
puts stderr.read
|
30
|
+
puts stderr.read unless silently
|
32
31
|
end
|
33
32
|
end
|
34
33
|
|
35
|
-
def
|
36
|
-
|
37
|
-
cmd.run(command)
|
34
|
+
def print(command)
|
35
|
+
puts command
|
38
36
|
end
|
39
37
|
end
|
40
38
|
end
|
data/lib/cirun/variants.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
module Cirun
|
2
2
|
module Variants
|
3
3
|
DATABASES = %w[pg mysql].freeze
|
4
|
-
REDMINES = %w[
|
5
|
-
RUBIES = %w[
|
4
|
+
REDMINES = %w[4.0 4.2 5.0 5.1 6.0 trunk].freeze
|
5
|
+
RUBIES = %w[2.3.8 2.7.8 3.0.6 3.2.2 3.3.6].freeze
|
6
6
|
end
|
7
7
|
end
|
data/lib/cirun/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cirun
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrei Malyshev
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-02-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -52,7 +52,7 @@ dependencies:
|
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: 0.8.2
|
55
|
-
description:
|
55
|
+
description:
|
56
56
|
email:
|
57
57
|
- Andrei.Malyshev@kodep.ru
|
58
58
|
executables:
|
@@ -76,7 +76,7 @@ homepage: https://redmineup.com
|
|
76
76
|
licenses:
|
77
77
|
- MIT
|
78
78
|
metadata: {}
|
79
|
-
post_install_message:
|
79
|
+
post_install_message:
|
80
80
|
rdoc_options: []
|
81
81
|
require_paths:
|
82
82
|
- lib
|
@@ -91,9 +91,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
91
91
|
- !ruby/object:Gem::Version
|
92
92
|
version: '0'
|
93
93
|
requirements: []
|
94
|
-
|
95
|
-
|
96
|
-
signing_key:
|
94
|
+
rubygems_version: 3.5.23
|
95
|
+
signing_key:
|
97
96
|
specification_version: 4
|
98
97
|
summary: This gem allows fast launch tests against specific redmine/ruby/db combo
|
99
98
|
test_files: []
|