Sha256: 15151bbfe9c28612100479bf6c4af0d3a2eaa6a4a3f0ec88b8e810d4822f14a0
Contents?: true
Size: 1.45 KB
Versions: 21
Compression:
Stored size: 1.45 KB
Contents
require 'optparse' require 'origen/commands/helpers' options = {} # App options are options that the application can supply to extend this command app_options = @application_options || [] opt_parser = OptionParser.new do |opts| opts.banner = <<-EOT Checkin the simulation object for the current or given environment/target. Note that this will commit whatever is in your workspace as the latest version, regardless of whether there exists any more recent version in the repository. Usage: origen sim:ci [options] EOT opts.on('-e', '--environment NAME', String, 'Override the default environment, NAME can be a full path or a fragment of an environment file name') { |e| options[:environment] = e } opts.on('-t', '--target NAME', String, 'Override the default target, NAME can be a full path or a fragment of a target file name') { |t| options[:target] = t } opts.on('-d', '--debugger', 'Enable the debugger') { options[:debugger] = true } # Apply any application option extensions to the OptionParser opts.separator '' opts.on('-h', '--help', 'Show this message') { puts opts; exit } end opt_parser.parse! ARGV Origen.environment.temporary = options[:environment] if options[:environment] Origen.target.temporary = options[:target] if options[:target] Origen.load_target unless tester.sim? Origen.log.error 'To run the sim:ci command your target/environment must instantiate an OrigenSim::Tester' exit 1 end tester.simulator.commit_simulation_objects(options)
Version data entries
21 entries across 21 versions & 1 rubygems