-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_osw_with_cli.rb
67 lines (58 loc) · 2.6 KB
/
run_osw_with_cli.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
require 'fileutils'
path_datapoints = "workflows"
# to use on windows, follow the directions here:
# http://nrel.github.io/OpenStudio-user-documentation/reference/command_line_interface/#loading-custom-gems-with-bundler-in-the-cli
# - make a custom gems folder and link to it
# - if updating openstudio-standards, use bundle exec rake install on openstudio-standards, then copy the installed gem to this directory
# test directories
test_directories = ['json_test_chicago',
'json_test_chicago_stratified_hpwh']
# loop through resource files
jobs = []
results_directories = Dir.glob("#{path_datapoints}/*")
results_directories.each do |directory|
next unless test_directories.include? directory.gsub("#{path_datapoints}/",'')
#next if not directory.include?('json_')
test_dir = "#{directory}/floorplan.osw"
#string = "openstudio --verbose --gem_path C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/openstudio-standards-0.2.10 run --measures_only --workflow '#{test_dir}'"
#string = "openstudio --verbose --bundle '#{Dir.pwd}/Gemfile' --bundle_path 'C:/Users/mdahlhau/Documents/gems' run --measures_only --workflow '#{test_dir}'"
string = "openstudio --verbose --bundle '#{Dir.pwd}/Gemfile' --bundle_path 'C:/Users/mdahlhau/Documents/gems' run --workflow '#{test_dir}'"
if not File.file?(test_dir)
puts "data_point.osw not found for #{directory}"
next
end
# system(string)
jobs << string
puts "running #{directory}"
end
# run the jobs
# if gem parallel isn't installed then comment out this could and use system(string) to run one job at a time
require 'parallel'
num_parallel = 11
Parallel.each(jobs, in_threads: num_parallel) do |job|
puts job
# blank out bundler and gem path modifications, will be re-setup by new call
new_env = {}
new_env['BUNDLER_ORIG_MANPATH'] = nil
new_env['BUNDLER_ORIG_PATH'] = nil
new_env['BUNDLER_VERSION'] = nil
new_env['BUNDLE_BIN_PATH'] = nil
new_env['RUBYLIB'] = nil
new_env['RUBYOPT'] = nil
# DLM: preserve GEM_HOME and GEM_PATH set by current bundle because we are not supporting bundle
# requires to ruby gems will work, will fail if we require a native gem
new_env['GEM_PATH'] = nil
new_env['GEM_HOME'] = nil
# DLM: for now, ignore current bundle in case it has binary dependencies in it
#bundle_gemfile = ENV['BUNDLE_GEMFILE']
#bundle_path = ENV['BUNDLE_PATH']
#if bundle_gemfile.nil? || bundle_path.nil?
new_env['BUNDLE_GEMFILE'] = nil
new_env['BUNDLE_PATH'] = nil
new_env['BUNDLE_WITHOUT'] = nil
#else
# new_env['BUNDLE_GEMFILE'] = bundle_gemfile
# new_env['BUNDLE_PATH'] = bundle_path
#end
system(new_env, job)
end