1
0
mirror of https://github.com/containers/youki synced 2024-11-22 17:02:00 +01:00
youki/scripts
Kotaro Inoue 95e4f6e4b1
Add seccomp into feature flags of youki to be compiled in (#2924)
* Add seccomp feature flag to youki

Signed-off-by: Kotaro Inoue <k.musaino@gmail.com>

* Add seccomp flag to the features test cases

Signed-off-by: Kotaro Inoue <k.musaino@gmail.com>

* fixup! Add seccomp flag to the features test cases

Signed-off-by: Kotaro Inoue <k.musaino@gmail.com>

---------

Signed-off-by: Kotaro Inoue <k.musaino@gmail.com>
2024-10-08 12:21:53 +09:00
..
.gitignore
build.sh Name the test tools contest (#2486) 2024-01-12 14:28:47 +05:30
cargo.sh Add rustfmt.toml to standardize formatting 2024-05-15 14:59:06 +01:00
clean.sh
contest.sh Re enable skipped e2e tests (#2647) 2024-01-23 20:36:04 +09:00
features_test.sh Add seccomp into feature flags of youki to be compiled in (#2924) 2024-10-08 12:21:53 +09:00
oci_integration_tests.sh
README.md
release_tag.sh Update doc with cross-rs and musl builds (#2621) 2024-01-11 20:39:29 +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.