mirror of
https://github.com/kasmtech/workspaces-images.git
synced 2025-06-20 09:37:55 +02:00
KASM-2042 Removing Sublimetext arm64 build
- Removal due to a current limitation on glibc version with ubuntu 18.04
This commit is contained in:
parent
7784df32d6
commit
abd7d59e13
@ -4,7 +4,7 @@ services:
|
|||||||
variables:
|
variables:
|
||||||
DOCKER_AUTH_CONFIG: ${_DOCKER_AUTH_CONFIG}
|
DOCKER_AUTH_CONFIG: ${_DOCKER_AUTH_CONFIG}
|
||||||
PLATFORM: "linux/amd64"
|
PLATFORM: "linux/amd64"
|
||||||
ARM_BUILDS: ",chromium,firefox,gimp,rdesktop,remmina,sublime-text,terminal,ubuntu-bionic-desktop,vlc,vs-code,"
|
ARM_BUILDS: ",chromium,firefox,gimp,rdesktop,remmina,terminal,ubuntu-bionic-desktop,vlc,vs-code,"
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- build
|
- build
|
||||||
|
@ -1,5 +1,12 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -ex
|
set -ex
|
||||||
|
|
||||||
|
ARCH=$(arch | sed 's/aarch64/arm64/g' | sed 's/x86_64/amd64/g')
|
||||||
|
if [ "$ARCH" == "arm64" ] ; then
|
||||||
|
echo "Sublimetext not supported on arm64, skipping installation"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
apt-get update
|
apt-get update
|
||||||
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | apt-key add -
|
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | apt-key add -
|
||||||
apt-get install -y apt-transport-https
|
apt-get install -y apt-transport-https
|
||||||
|
Loading…
x
Reference in New Issue
Block a user