mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-05 00:15:44 +00:00
12 lines
272 B
Bash
Executable file
12 lines
272 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
|