Path: blob/main/e2e_tests/guest_under_test/rootfs_benches/gimp/make.sh
5394 views
#!/bin/bash1# Copyright 2023 The ChromiumOS Authors2# Use of this source code is governed by a BSD-style license that can be3# found in the LICENSE file.45# Generate compressed rootfs image for gimp e2e benchmark6# Result will be stored as /tmp/crosvm_e2e_test_guest_gimp.img.zst78cd "$(dirname "$0")"9podman build -t crosvm_e2e_test_guest_gimp ../../../../ -f e2e_tests/guest_under_test/rootfs_benches/gimp/ContainerFile10CONTAINER=$(podman create crosvm_e2e_test_guest_gimp)11podman export $CONTAINER > /tmp/crosvm_e2e_test_guest_gimp.tar12podman rm $CONTAINER13virt-make-fs --format=raw --size=+100M --type=ext4 /tmp/crosvm_e2e_test_guest_gimp.tar /tmp/crosvm_e2e_test_guest_gimp.img14rm /tmp/crosvm_e2e_test_guest_gimp.tar15zstd --rm /tmp/crosvm_e2e_test_guest_gimp.img161718