Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Cool Fire
nanobot4
Commits
b3e43987
Commit
b3e43987
authored
Mar 08, 2017
by
Cool Fire
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Try to use in-jvm reuse to speed up spawning
parent
f26f9274
Pipeline
#250
passed with stages
in 15 minutes and 59 seconds
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
.gitlab-ci.yml
.gitlab-ci.yml
+2
-2
scheck.rb
scheck.rb
+1
-1
No files found.
.gitlab-ci.yml
View file @
b3e43987
...
...
@@ -54,7 +54,7 @@ jruby_1.7:
-
master
script
:
-
ruby -v
-
ruby --dev scheck.rb
-
ruby --dev
-J-Djruby.launch.inproc=true
scheck.rb
jruby_9.1
:
image
:
jruby:9.1
...
...
@@ -65,7 +65,7 @@ jruby_9.1:
-
master
script
:
-
ruby -v
-
ruby --dev scheck.rb
-
ruby --dev
-J-Djruby.launch.inproc=true
scheck.rb
rubocop
:
stage
:
linting
...
...
scheck.rb
View file @
b3e43987
...
...
@@ -2,7 +2,7 @@
ret
=
0
Dir
[
"**/*.rb"
].
each
do
|
f
|
res
=
%x(
ruby -c
#{
f
}
)
res
=
`
ruby -c
#{
f
}
`
if
res
.
empty?
ret
=
1
puts
"
#{
f
}
FAILED!"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment