mirror of
https://github.com/VSCodium/vscodium.git
synced 2026-04-19 13:46:03 +10:00
(experiment) create zip for Linux and remove osx deps from travis
This commit is contained in:
@@ -24,6 +24,7 @@ script:
|
|||||||
- ./build.sh
|
- ./build.sh
|
||||||
|
|
||||||
before_deploy:
|
before_deploy:
|
||||||
|
- ./create_zip.sh
|
||||||
- ./sum.sh
|
- ./sum.sh
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
|
|||||||
@@ -1,14 +1,9 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
sudo apt-get update
|
||||||
curl -Lo $HOME/bin/jq --create-dirs https://github.com/stedolan/jq/releases/download/jq-1.6/jq-osx-amd64
|
sudo apt-get install -y fakeroot jq
|
||||||
chmod +x $HOME/bin/jq
|
triplet=
|
||||||
export PATH="$HOME/bin:$PATH"
|
case $BUILDARCH in
|
||||||
else
|
|
||||||
sudo apt-get update
|
|
||||||
sudo apt-get install -y fakeroot jq
|
|
||||||
triplet=
|
|
||||||
case $BUILDARCH in
|
|
||||||
arm)
|
arm)
|
||||||
arch=armhf
|
arch=armhf
|
||||||
triplet=arm-linux-gnueabihf
|
triplet=arm-linux-gnueabihf
|
||||||
@@ -18,25 +13,24 @@ else
|
|||||||
arch=arm64
|
arch=arm64
|
||||||
triplet=aarch64-linux-gnu
|
triplet=aarch64-linux-gnu
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
if [[ -n "$triplet" ]]; then
|
if [[ -n "$triplet" ]]; then
|
||||||
sed 's/^deb /deb [arch=amd64] '/g -i /etc/apt/sources.list
|
sed 's/^deb /deb [arch=amd64] '/g -i /etc/apt/sources.list
|
||||||
echo "deb [arch=$arch] http://ports.ubuntu.com/ubuntu-ports/ trusty main" | sudo tee -a /etc/apt/sources.list.d/$arch.list >/dev/null
|
echo "deb [arch=$arch] http://ports.ubuntu.com/ubuntu-ports/ trusty main" | sudo tee -a /etc/apt/sources.list.d/$arch.list >/dev/null
|
||||||
sudo dpkg --add-architecture $arch
|
sudo dpkg --add-architecture $arch
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install libc6-dev-$arch-cross gcc-$triplet g++-$triplet `apt-cache search x11proto | grep ^x11proto | cut -f 1 -d ' '` xz-utils pkg-config
|
sudo apt-get install libc6-dev-$arch-cross gcc-$triplet g++-$triplet `apt-cache search x11proto | grep ^x11proto | cut -f 1 -d ' '` xz-utils pkg-config
|
||||||
mkdir -p dl
|
mkdir -p dl
|
||||||
cd dl
|
cd dl
|
||||||
apt-get download libx11-dev:$arch libx11-6:$arch libxkbfile-dev:$arch libxkbfile1:$arch libxau-dev:$arch libxdmcp-dev:$arch libxcb1-dev:$arch libsecret-1-dev:$arch libsecret-1-0:$arch libpthread-stubs0-dev:$arch libglib2.0-dev:$arch libglib2.0-0:$arch libffi-dev:$arch libffi6:$arch zlib1g:$arch libpcre3-dev:$arch libpcre3:$arch
|
apt-get download libx11-dev:$arch libx11-6:$arch libxkbfile-dev:$arch libxkbfile1:$arch libxau-dev:$arch libxdmcp-dev:$arch libxcb1-dev:$arch libsecret-1-dev:$arch libsecret-1-0:$arch libpthread-stubs0-dev:$arch libglib2.0-dev:$arch libglib2.0-0:$arch libffi-dev:$arch libffi6:$arch zlib1g:$arch libpcre3-dev:$arch libpcre3:$arch
|
||||||
for i in *.deb; do ar x $i; sudo tar -C / -xf data.tar.*; rm -f data.tar.*; done
|
for i in *.deb; do ar x $i; sudo tar -C / -xf data.tar.*; rm -f data.tar.*; done
|
||||||
cd ..
|
cd ..
|
||||||
export CC=/usr/bin/$triplet-gcc
|
export CC=/usr/bin/$triplet-gcc
|
||||||
export CXX=/usr/bin/$triplet-g++
|
export CXX=/usr/bin/$triplet-g++
|
||||||
export CC_host=/usr/bin/gcc
|
export CC_host=/usr/bin/gcc
|
||||||
export CXX_host=/usr/bin/g++
|
export CXX_host=/usr/bin/g++
|
||||||
export PKG_CONFIG_LIBDIR=/usr/lib/$triplet/pkgconfig:/usr/lib/pkgconfig:/usr/share/pkgconfig
|
export PKG_CONFIG_LIBDIR=/usr/lib/$triplet/pkgconfig:/usr/lib/pkgconfig:/usr/share/pkgconfig
|
||||||
else
|
else
|
||||||
sudo apt-get install libx11-dev libxkbfile-dev libsecret-1-dev rpm
|
sudo apt-get install libx11-dev libxkbfile-dev libsecret-1-dev rpm
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user