1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-05-10 09:36:13 +02:00
youki/scripts
Kris Nóva bef32e083f
Introduce seccomp feature for libcontainer with musl (#1484)
* Introduce seccomp feature for libcontainer with musl

Signed-off-by: Kris Nóva <kris@nivenly.com>

* remove mystery merge conflict

Signed-off-by: Eric Fang <yihuaf@unkies.org>

---------

Signed-off-by: Kris Nóva <kris@nivenly.com>
Signed-off-by: Eric Fang <yihuaf@unkies.org>
Co-authored-by: Eric Fang <yihuaf@unkies.org>
2023-03-23 10:57:51 -07:00
..
.gitignore Add scripts to build binaries, run rust integration tests and clean up 2022-02-06 16:01:13 +05:30
README.md Update the docs for the directory structure changes (#813) 2022-04-13 20:59:52 +02:00
build.sh Change targets in the makefile 2022-11-30 12:13:03 +05:30
clean.sh Change targets in the makefile 2022-11-30 12:13:03 +05:30
features_test.sh Introduce seccomp feature for libcontainer with musl (#1484) 2023-03-23 10:57:51 -07:00
oci_integration_tests.sh skip cgroup v2 test of oci-tools 2022-12-12 21:58:01 +09:00
rust_integration_tests.sh Remove the build dependency from some tests. 2022-05-09 21:10:14 +09:00

Scripts

This stores various scripts that do various things. These can be intended to be used directly, or can be for using from some other scripts or Makefiles.

Note

Please use set -e at the start of every script. This will ensure that the operation fails if any single command fails in that script. Without it, the script will continue after the failing command and might create a knock-on effect of incorrect results. In case you expect some step to fail, handle the failure directly rather than checking some condition to see if the command is successful in the rest of the script.