mirror of
https://github.com/kasmtech/workspaces-images.git
synced 2025-06-27 04:51:35 +02:00
Merge branch 'bugfix/KASM-2042_sublime_arm' into 'develop'
KASM-2042 Removing Sublimetext arm64 build Closes KASM-2042 See merge request kasm-technologies/internal/workspaces-images!20
This commit is contained in:
commit
374555d391
@ -4,7 +4,7 @@ services:
|
||||
variables:
|
||||
DOCKER_AUTH_CONFIG: ${_DOCKER_AUTH_CONFIG}
|
||||
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:
|
||||
- build
|
||||
|
@ -1,5 +1,12 @@
|
||||
#!/usr/bin/env bash
|
||||
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
|
||||
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | apt-key add -
|
||||
apt-get install -y apt-transport-https
|
||||
|
Loading…
x
Reference in New Issue
Block a user