We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa5dccb commit fa0584eCopy full SHA for fa0584e
ci/test/04_install.sh
@@ -50,6 +50,7 @@ if [ -z "$DANGER_RUN_CI_ON_HOST" ]; then
50
--env-file /tmp/env \
51
--name $CONTAINER_NAME \
52
$CI_IMAGE_NAME_TAG)
53
+ export CI_CONTAINER_ID
54
55
# Create a non-root user inside the container which matches the local user.
56
#
ci/test/06_script_b.sh
@@ -82,3 +82,8 @@ fi
82
if [ "$RUN_FUZZ_TESTS" = "true" ]; then
83
CI_EXEC LD_LIBRARY_PATH="${DEPENDS_DIR}/${HOST}/lib" test/fuzz/test_runner.py "${FUZZ_TESTS_CONFIG}" "$MAKEJOBS" -l DEBUG "${DIR_FUZZ_IN}"
84
fi
85
+
86
+if [ -z "$DANGER_RUN_CI_ON_HOST" ]; then
87
+ echo "Stop and remove CI container by ID"
88
+ docker container kill "${CI_CONTAINER_ID}"
89
+fi
0 commit comments