public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
From: Anton Mikanovich <amikan@ilbers.de>
To: isar-users@googlegroups.com
Cc: Anton Mikanovich <amikan@ilbers.de>
Subject: [PATCH] CI: Add sstate-cache testcase
Date: Thu, 28 Oct 2021 18:20:56 +0300	[thread overview]
Message-ID: <20211028152056.244471-1-amikan@ilbers.de> (raw)

Test rebuild time improve after cleanup to be sure sstate-cache works.

Signed-off-by: Anton Mikanovich <amikan@ilbers.de>
---
 testsuite/build_test/build_test.py | 40 ++++++++++++++++++++++++++++--
 1 file changed, 38 insertions(+), 2 deletions(-)

diff --git a/testsuite/build_test/build_test.py b/testsuite/build_test/build_test.py
index d39c10c0..244f6fc0 100644
--- a/testsuite/build_test/build_test.py
+++ b/testsuite/build_test/build_test.py
@@ -1,9 +1,9 @@
 #!/usr/bin/env python3
 
-import os
+import os, time
 
 from avocado import skipUnless
-from avocado.utils import path
+from avocado.utils import path, process
 from cibase import CIBaseTest
 
 UMOCI_AVAILABLE = True
@@ -206,3 +206,39 @@ class ContainerSdkTest(CIBaseTest):
         targets = ['mc:container-amd64-stretch:isar-image-base']
 
         self.perform_container_test(targets, 'do_populate_sdk')
+
+class SstateTest(CIBaseTest):
+
+    """
+    Test rebuild speed improve with sstate-cache
+
+    :avocado: tags=sstate
+    """
+    def test_sstate_rebuild(self):
+        speedup_k = 2.0
+
+        targets = [
+            'mc:qemuamd64-bullseye:isar-image-base'
+                  ]
+
+        # Cleanup everything before build
+        build_dir = self.params.get('build_dir',
+                    default=os.path.dirname(__file__) + '/../../build')
+        process.run('rm -rf ' + build_dir + '/sstate-cache', sudo=True)
+        self.deletetmp(build_dir)
+
+        start = time.time()
+        self.perform_build_test(targets, 1, None)
+        first_time = time.time() - start
+        self.log.info('Non-cached build:' + str(round(first_time, 2)))
+
+        # Cleanup everything but cache files
+        self.deletetmp(build_dir)
+
+        start = time.time()
+        self.perform_build_test(targets, 1, None)
+        second_time = time.time() - start
+        self.log.info('Cached build:' + str(round(second_time, 2)))
+
+        if first_time / second_time < speedup_k:
+            self.fail('No speedup after rebuild with sstate-cache')
-- 
2.20.1


             reply	other threads:[~2021-10-28 15:21 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-28 15:20 Anton Mikanovich [this message]
2021-10-28 15:34 ` Jan Kiszka
2021-10-28 17:22   ` Anton Mikanovich
2021-10-28 18:21     ` Henning Schild
2021-11-02  5:57       ` Schmidt, Adriaan
2021-11-02  7:55         ` Jan Kiszka

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20211028152056.244471-1-amikan@ilbers.de \
    --to=amikan@ilbers.de \
    --cc=isar-users@googlegroups.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox