This document summarizes notes taken while to make the VMWare Tech preview work on Apple M1 Pro, it originated from discussions in hashicorp/vagrant-vmware-desktop#22
First install Rosetta if not already done, this is needed to run x86 code:
This document summarizes notes taken while to make the VMWare Tech preview work on Apple M1 Pro, it originated from discussions in hashicorp/vagrant-vmware-desktop#22
First install Rosetta if not already done, this is needed to run x86 code:
| set -ex \ | |
| && wget -O freetds-1.00.15.tar.gz "ftp://ftp.freetds.org/pub/freetds/stable/freetds-1.00.15.tar.gz" \ | |
| && tar -xzvf freetds-1.00.15.tar.gz \ | |
| && cd freetds-1.00.15 \ | |
| && ./configure \ | |
| && make \ | |
| && sudo make install |
| { | |
| "auto_complete_commit_on_tab": true, | |
| "bold_folder_labels": true, | |
| "drag_text": false, | |
| "draw_white_space": "all", | |
| "ensure_newline_at_eof_on_save": true, | |
| "font_size": 15.0, | |
| "highlight_line": true, | |
| "highlight_modified_tabs": true, | |
| "ignored_packages": |
| require 'rails_helper' | |
| describe ProductUploader do | |
| include CarrierWave::Test::Matchers | |
| let(:company) { seed :master_company } | |
| let(:uploader) { ProductUploader.new(company, :image) } | |
| it 'creates image versions' do | |
| uploader.store!(File.open("#{Rails.root}/spec/support/images/death_star.jpg")) |
| echo "*****************************************" | |
| echo " Installing PhantomJs on Amazon Linux AMI " | |
| echo "*****************************************" | |
| echo "*" | |
| echo "*" | |
| echo "*" | |
| echo "*****************************************" | |
| echo " 1. Installing dependencies " | |
| echo "*****************************************" | |
| sudo yum -y install git lex bison gperf openssl-devel freetype-devel fontconfig-devel libicu-devel sqlite-devel libpng-devel libjpeg-devel |