mirror of
https://github.com/VSCodium/vscodium.git
synced 2024-12-04 19:58:24 +03:00
ae47b31091
* Support 32-bit Linux builds * Update README and correct scripts * Use npm run instead of npx
16 lines
467 B
Bash
Executable File
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 |