mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-23 10:16:41 +00:00
golang from the Ubuntu Trusty is too old. Signed-off-by: Andrei Vagin <avagin@virtuozzo.com>
12 lines
247 B
Bash
Executable file
12 lines
247 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e -x
|
|
|
|
export CC=gcc
|
|
export PATH=`pwd`/criu:$PATH &&
|
|
cd phaul/
|
|
mkdir -p src/github.com/xemul/criu &&
|
|
ln -s ../../../../ src/github.com/xemul/criu/phaul &&
|
|
export GOPATH=`pwd` &&
|
|
cd src/github.com/xemul/criu/phaul &&
|
|
make run_test
|