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

12 lines
253 B
Bash
Executable File

#! /bin/sh
cd ../crates
make release
mv ./youki_bin ../scripts/youki
cd ../integration_tests/rust-integration-tests
make FLAG=--release all
mv ./runtimetest_bin ../../scripts/runtimetest
mv ./integration_test_bin ../../scripts/integration_test
exit 0