1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-05-18 21:46:13 +02:00
youki/scripts
Eric Fang f4e7e300e6
Fix the feature test and turn on in CI (#2060)
* reworked the justfile to be explicit with path

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

* fix the feature tests

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

* add the musl test

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

* moving all stub into a single dir

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

---------

Signed-off-by: yihuaf <yihuaf@unkies.org>
2023-06-19 21:21:18 +09: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 Fix the feature test and turn on in CI (#2060) 2023-06-19 21:21:18 +09:00
clean.sh Fix the feature test and turn on in CI (#2060) 2023-06-19 21:21:18 +09:00
features_test.sh Fix the feature test and turn on in CI (#2060) 2023-06-19 21:21:18 +09:00
oci_integration_tests.sh Using `typos-cli` to catch typos + fixes for existing typos (#2018) 2023-06-08 10:19:17 +05:30
rust_integration_tests.sh Introduce a `log-level` flag. (#2036) 2023-06-17 21:56:49 +09:00
test_musl.sh Fix the feature test and turn on in CI (#2060) 2023-06-19 21:21:18 +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.