mirror of
https://github.com/containers/podman.git
synced 2025-05-20 00:27:03 +08:00

To leave not leave some artifacts arounds. Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
13 lines
266 B
Bash
Executable File
13 lines
266 B
Bash
Executable File
#!/usr/bin/env sh
|
|
source ./helpers.bash
|
|
|
|
setup
|
|
echo_bold "Create $RUNS containers"
|
|
hyperfine --warmup 10 --runs $RUNS \
|
|
"$ENGINE_A create $IMAGE" \
|
|
"$ENGINE_B create $IMAGE"
|
|
|
|
# Clean up
|
|
$ENGINE_A system prune -f >> /dev/null
|
|
$ENGINE_B system prune -f >> /dev/null
|