Skip to content

Commit 978e1c2

Browse files
committed
build on Debian
1 parent 12db9aa commit 978e1c2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Rakefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ task default: [:init, :compile, :install, :test, :gem]
66
# depends on installed processing, with processing on path
77
desc 'Copy Jars'
88
task :init do
9-
processing_root = File.dirname(`readlink -f $(which processing)`) # for Archlinux etc
10-
# processing_root = File.join(ENV['HOME'], 'processing-3.5.3') # alternative for debian linux etc
9+
# processing_root = File.dirname(`readlink -f $(which processing)`) # for Archlinux etc
10+
processing_root = File.join(ENV['HOME'], 'processing-3.5.3') # alternative for debian linux etc
1111
jar_dir = File.join(processing_root, 'core', 'library')
1212
opengl = Dir.entries(jar_dir).grep(/amd64|macosx-universal/)
1313
opengl.concat %w[jogl-all.jar gluegen-rt.jar]
@@ -45,10 +45,10 @@ desc 'Test'
4545
task :test do
4646
sh 'jruby test/helper_methods_test.rb'
4747
# sh 'jruby test/respond_to_test.rb' Skip test on Travis to avoid Headless fail
48-
sh 'jruby test/create_test.rb'
49-
sh 'jruby test/math_tool_test.rb'
50-
sh 'jruby test/deglut_spec_test.rb'
51-
sh 'jruby test/vecmath_spec_test.rb'
48+
sh 'jruby --dev test/create_test.rb'
49+
sh 'jruby --dev test/math_tool_test.rb'
50+
sh 'jruby --dev test/deglut_spec_test.rb'
51+
sh 'jruby --dev test/vecmath_spec_test.rb'
5252
end
5353

5454
desc 'clean'

0 commit comments

Comments
 (0)