forked from JetBrains/pty4j
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild-native-linux.sh
More file actions
executable file
·55 lines (44 loc) · 1.45 KB
/
build-native-linux.sh
File metadata and controls
executable file
·55 lines (44 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/bin/bash
set -e
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"
# buildDocker( GOOS GOARCH )
# shellcheck disable=SC2120
buildDocker() {
local BUILD_DIR="$DIR/build"
local SRC_DIR="$DIR"
local DOCKER_IMAGE="${1}"
[[ -z "$DOCKER_IMAGE" ]] && echo "Docker image not defined. Terminating." && exit 1
local MAKE_TARGET="${2}"
[[ -z "$MAKE_TARGET" ]] && echo "make target not defined. Terminating." && exit 1
rm -rf "$BUILD_DIR"
mkdir "$BUILD_DIR"
cat >"$BUILD_DIR/run.sh" <<EOF
#!/bin/bash
set -e
echo "Updating packages..."
apt-get update -y
apt-get install -y build-essential gcc libc-dev
echo "Building native libs of pty4j-bashsupport for $MAKE_TARGET ..."
cd /src
cd native
make -f Makefile_linux "$MAKE_TARGET"
rm *.o
echo Successfully built pty4j-bashsupport...
echo
EOF
chmod u+x "$BUILD_DIR/run.sh"
docker run --rm -t \
--mount "src=$BUILD_DIR,target=/build,type=bind" \
--mount "src=$SRC_DIR,target=/src,type=bind" \
"$DOCKER_IMAGE" /build/run.sh
rm -rf "$BUILD_DIR"
}
# https://blog.hypriot.com/post/docker-intel-runs-arm-containers/
docker run --privileged hypriot/qemu-register
cd "$DIR"
buildDocker "ubuntu:xenial" linux_x86_64
buildDocker "ppc64le/ubuntu:xenial" linux_ppc64le
buildDocker "arm64v8/ubuntu:xenial" linux_aarch64
buildDocker "arm32v7/ubuntu:xenial" linux_aarch64
# https://github.com/hypriot/qemu-register doesn't support mips654 yet
#buildDocker "mips64le/debian:stable" linux_mips64el