Skip to content

Latest commit

 

History

History
287 lines (196 loc) · 7.98 KB

linux-ubuntu.md

File metadata and controls

287 lines (196 loc) · 7.98 KB

Setup your Keyman build environment on Ubuntu

Target Projects

On Linux, you can build the following projects:

  • Common/Web

The following projects cannot be built on Linux:

  • Keyman for Windows
  • Keyman Developer
  • Keyman for macOS
  • Keyman for iOS

Requirements

System Requirements

  • Minimum Ubuntu version: Ubuntu 20.04

Other Linux distributions will also work if appropriate dependencies are installed.

Repository Paths

Recommended filesystem layout:

$HOME/keyman/
  keyman/              this repository (https://github.com/keymanapp/keyman)
  keyboards/           https://github.com/keymanapp/keyboards
  sites/
    keyman.com/        https://github.com/keymanapp/keyman.com
    ...

Prerequisites

The current list of dependencies can be found in the Build-Depends section of linux/debian/control. They are most easily installed with the mk-build-deps tool:

sudo apt update
sudo apt install devscripts equivs
sudo mk-build-deps --install linux/debian/control

Node.js

Node.js v18 is required for Core builds, Web builds, and Developer command line tool builds and usage.

Follow the instructions on the NodeSource Distributions page.

Emscripten

You'll also have to install emscripten (version 3.1.44 is known to work):

git clone https://github.com/emscripten-core/emsdk.git
cd emsdk
./emsdk install 3.1.44
./emsdk activate 3.1.44
export EMSCRIPTEN_BASE=$(pwd)/upstream/emscripten

NOTE: Don't put EMSDK on the path, i.e. don't source emsdk_env.sh.

Keyman Core

All dependencies are already installed if you followed the instructions under Prerequisites.

Building Keyman Core

Keyman Core can be built with the core/build.sh script.

Keyman for Linux

All dependencies are already installed if you followed the instructions under Prerequisites.

Building Keyman for Linux

Keyman for Linux can be built with the linux/build.sh script.

Keyman Web

Most dependencies are already installed if you followed the instructions under Prerequisites. You'll still have to install Chrome:

wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo apt install ./google-chrome-stable_current_amd64.deb

And add the CHROME_BIN environment variable to `.bashrc:

export CHROME_BIN=/opt/google/chrome/chrome

Environment variables for Keyman Web

CHROME_BIN pointing to the Google Chrome binary.

Building Keyman Web

Keyman Web can be built with the web/build.sh script.

Keyman for Android

Dependencies:

Most dependencies are already installed if you followed the instructions under Prerequisites.

Additional requirements:

If you only use the command line you don't need Android Studio, however to do development it's recommended to install it.

Run Android Studio once after installation to install additional components such as emulator images and SDK updates.

Maven, jq and pandoc can be installed with:

sudo apt update
sudo apt install maven pandoc jq

If necessary, Android SDK and Gradle will be installed by the build script. In order for that to work, run the following command once. You won't need this if you install Android SDK through Android Studio.

sudo apt install sdkmanager
sudo sdkmanager platform-tools
sudo chown -R $USER:$USER /opt/android-sdk/
sdkmanager --licenses

Environment variables for Keyman for Android

Required environment variable:

  • ANDROID_HOME pointing to Android SDK ($HOME/Android/Sdk)

Recommended environment variable:

Building Keyman for Android

Keyman for Android can be built with the android/build.sh script.

Notes on Environment Variables

JAVA_HOME

This environment variable tells Gradle what version of Java to use for building Keyman for Android. OpenJDK 11 is used for master.

It's recommended to set the environment variables to:

export JAVA_HOME="[path to OpenJDK 11]"

Also edit /etc/profile.d/jvm.sh as sudo:

export JAVA_HOME="[path to OpenJDK 11]"

Multiple versions of Java: If you need to build Keyman for Android 16.0 or older versions, you can set JAVA_HOME_11 to the OpenJDK 11 path and JAVA_HOME to the OpenJDK 8 path. This will build both versions correctly from command line. But note that you do need to update your JAVA_HOME env var to the associated version before opening Android Studio and loading any Android projects. JAVA_HOME_11 is mostly used by CI.

Docker Builder

The Docker builder allows you to perform a build from anywhere Docker is supported.

To build the docker image:

cd linux
docker pull ubuntu:latest # (to make sure you have an up-to-date image)
docker build . -t keymanapp/keyman-linux-builder:latest

Once the image is built, it may be used to build parts of Keyman.

Note that it's not yet possible to run tests in the Docker container.

  • core

    # build 'Keyman Core' in docker
    # keep linux build artifacts separate
    mkdir -p $(git rev-parse --show-toplevel)/core/build/linux
    docker run -it --rm -v $(git rev-parse --show-toplevel):/home/build/build \
      -v $(git rev-parse --show-toplevel)/core/build/linux:/home/build/build/core/build \
      keymanapp/keyman-linux-builder:latest \
      core/build.sh --debug
  • linux

    # build 'Keyman for Linux' installation in docker
    docker run -it --rm -v $(git rev-parse --show-toplevel):/home/build/build \
      --entrypoint /bin/bash keymanapp/keyman-linux-builder:latest \
      -c 'DESTDIR=/home/build /usr/bin/bashwrapper linux/build.sh --debug build install'
  • Keyman Web

    # build 'Keyman Web' in docker
    docker run --privileged -it --rm \
      -v $(git rev-parse --show-toplevel):/home/build/build \
      keymanapp/keyman-linux-builder:latest \
      web/build.sh --debug
  • Keyman for Android

    # build 'Keyman for Android' in docker
    docker run -it --rm -v $(git rev-parse --show-toplevel):/home/build/build \
      keymanapp/keyman-linux-builder:latest \
      android/build.sh --debug

Customizing the builder

You can use Docker build args to customize the image build. As an example, the following will build an image explicitly with Ubuntu 23.04 and Node.js 20. Check the Dockerfile for ARG entries.

cd linux
docker pull ubuntu:23.04 # (to make sure you have an up-to-date image)
docker build . -t keymanapp/keyman-linux-builder:u23.04-node20 --build-arg OS_VERSION=23.04 --build-arg NODE_MAJOR=20

Using the builder with VSCode Dev Containers

  1. Save the following as .devcontainer/devcontainer.json, updating the image to match the Docker image built above.
// file: .devcontainer/devcontainer.json
{
        "name": "Keyman Ubuntu 23.04",
        "image": "keymanapp/keyman-linux-builder:u23.04-node18"
}
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/ubuntu
  1. in VSCode, use the "Dev Containers: Open Folder In Container…" option and choose the Keyman directory.

  2. You will be given a window which is running VSCode inside this builder image, regardless of your host OS.