vscodium/install_deps.sh
Peter Squicciarini ae47b31091
32 bit builds (#32)
* Support 32-bit Linux builds

* Update README and correct scripts

* Use npm run instead of npx
2018-10-04 18:05:05 -04:00

16 lines
467 B
Bash
Executable file

#!/bin/bash
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
brew update
brew install yarn --without-node
brew install jq zip
else
sudo apt-get update
sudo apt-get install libx11-dev libxkbfile-dev libsecret-1-dev fakeroot rpm
if [[ "$BUILDARCH" == "ia32" ]]; then
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install libc6-dev-i386 gcc-multilib g++-multilib
sudo apt-get install libx11-dev:i386 libxkbfile-dev:i386
fi
fi