Sha256: 4ca7438b6309ba6e5e7573530c7ccc36288e01eae7da78a203de8bbece61c5b9

Contents?: true

Size: 1.36 KB

Versions: 1

Compression:

Stored size: 1.36 KB

Contents

def calabash_build(args)
  run_setup_if_settings_does_not_exist

  @settings = JSON.parse(IO.read(".calabash_settings"))  
    test_server_template_dir = File.join(File.dirname(__FILE__), '..', 'test-server')
  
  Dir.mktmpdir do |workspace_dir|
    
    @test_server_dir = File.join(workspace_dir, 'test-server')
    FileUtils.cp_r(test_server_template_dir, workspace_dir)
    
    Dir.chdir(@test_server_dir) {
      args = [
        "ant",
        "clean", 
        "package",
        "-Dtested.package_name=#{@settings["package_name"]}",
        "-Dtested.main_activity=#{@settings["activity_name"]}",
        "-Dtested.project.apk=#{@settings["app_path"]}",
        "-Dandroid.api.level=#{@settings["api_level"]}",
        "-Dkey.store=#{@settings["keystore_location"]}",
        "-Dkey.store.password=#{@settings["keystore_password"]}",
        "-Dkey.alias=#{@settings["keystore_alias"]}",
        "-Dkey.alias.password=#{@settings["keystore_alias_password"]}",
      ]
      IO.popen(args) do |io|
        io.each { |s| print s }
      end
      if $?.exitstatus != 0
        puts "Could not build the test server. Please see the output above."
        exit $?.exitstatus
      end
    }

    test_apk = File.join(@test_server_dir, "bin", "Test.apk")
    FileUtils.cp(test_apk, @support_dir)
    puts "Done building the test server. Moved it to features/support/Test.apk"
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
calabash-android-0.0.3 bin/calabash-android-build.rb