1
0
mirror of https://github.com/containers/youki synced 2024-09-20 10:54:22 +02:00
youki/build.sh

27 lines
607 B
Bash
Raw Normal View History

2021-05-30 11:30:40 +02:00
#!/bin/bash
set -e
2021-05-30 11:30:40 +02:00
TARGET=${TARGET-x86_64-unknown-linux-gnu}
if [ "$TARGET" != "" ]; then
TGT="--target $TARGET"
fi
VERSION=debug
if [ "$1" == "--release" ]; then
2021-05-30 11:30:40 +02:00
VERSION=release
fi
2021-06-19 07:39:59 +02:00
# Runtimetest must be compiled in its dorectory and is
# not a part of youki workspace. For the reasoning behind this,
# please check the docs and readme
cargo build --verbose $TGT $1
cd ./runtimetest
2021-06-19 07:39:59 +02:00
cargo build --verbose $TGT $1
cd ..
2021-05-30 11:30:40 +02:00
cp target/$TARGET/$VERSION/youki .
2021-10-21 18:09:26 +02:00
cp target/$TARGET/$VERSION/integration_test ./youki_integration_test
cp runtimetest/target/$TARGET/$VERSION/runtimetest ./runtimetest_tool