mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-26 03:47:35 +00:00
golang from the Ubuntu Trusty is too old. Signed-off-by: Andrei Vagin <avagin@virtuozzo.com>
13 lines
247 B
Bash
Executable File
13 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
|