Skip to content
Snippets Groups Projects
  1. Oct 11, 2023
    • boklm's avatar
      Bug 40062: Avoid using run_chroot in copy_file_to · 0a47c75f
      boklm authored
      When copying files to a container directory, we were running `chown` on
      the files using run_chroot, which in addition to using the chroot
      command is doing other things like setting up mount points and other
      things not needed for running `chown`. Simply using `chroot` should be
      enough and faster.
      0a47c75f
    • boklm's avatar
      Bug 40062: Copy input_files directories recursively · 063c41f9
      boklm authored
      When an input_files is a directory, instead of passing each files
      included in the directory individually to remote_put, we just pass the
      directory and expect remote_put to copy it recursively.
      
      Since in the case of container, each call to remote_put is a significant
      overhead, this makes it much faster when including a directory
      containing many files.
      063c41f9
  2. Sep 18, 2023
  3. Sep 06, 2023
  4. Jul 19, 2023
  5. Jul 18, 2023
  6. May 17, 2023
  7. May 08, 2023
  8. Nov 28, 2022
  9. Nov 02, 2022
  10. Nov 01, 2022
  11. Sep 20, 2022
  12. Jul 25, 2022
  13. Jul 08, 2022
  14. Jul 04, 2022
  15. Jul 01, 2022
  16. May 04, 2022
  17. Apr 27, 2022
  18. Apr 26, 2022
  19. Apr 06, 2022
  20. Jul 05, 2021
  21. May 06, 2021
    • boklm's avatar
      Bug 40025: Use hard link to prepare input_files · c700693b
      boklm authored
      When using remote_exec, we collect input_files in a temporary directory,
      before copying them to the "remote" (for example a container). As we
      don't normally modify the files inside this temporary directory, it is
      safe to use hard link rather than copies of the files.
      
      When remote_exec is not used, we don't use hard links by default, but
      link_input_files can be set to 1 to use hard links.
      c700693b
  22. Apr 27, 2021
  23. Apr 26, 2021
  24. Apr 23, 2021
  25. Apr 13, 2021
  26. Apr 08, 2021
  27. Mar 22, 2021
    • boklm's avatar
      Bug 33991: Remove unused features · 777bab01
      boklm authored
      For simplification, we remove some unused features. Those features can
      still be reimplemented externally if needed.
      
      For example, the "rbm rpm" command can be replaced with
      "rbm build --step rpm" and a definition of an rpm step in rbm.conf.
      
      We remove the following options:
       - version_command
       - rpm
       - rpmbuild
       - srpm
       - rpmspec
       - rpm_rel
       - debian_create
       - deb
       - deb_src
       - use_pbuilder
       - debian_revision
      
      And the following commands:
       - rpmspec
       - rpm
       - srpm
       - deb-src
       - deb
       - pkg
       - publish
      777bab01
  28. Mar 17, 2021
  29. Mar 02, 2021
Loading