1
0
mirror of https://github.com/containers/youki synced 2024-09-20 02:41:47 +02:00
youki/scripts/build.sh

14 lines
315 B
Bash
Raw Normal View History

2022-02-19 18:59:10 +01:00
#! /bin/sh -eu
2022-02-06 11:52:18 +01:00
ROOT=$(git rev-parse --show-toplevel)
cd ${ROOT}/crates
make release
2022-02-06 11:52:18 +01:00
mv ./youki_bin ${ROOT}/scripts/youki
2022-02-06 11:52:18 +01:00
cd ${ROOT}/integration_tests/rust-integration-tests
make FLAG=--release all
2022-02-06 11:52:18 +01:00
mv ./runtimetest_bin ${ROOT}/scripts/runtimetest
mv ./integration_test_bin ${ROOT}/scripts/integration_test
exit 0