Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update devctr to 24.04 #4784

Open
wants to merge 14 commits into
base: main
Choose a base branch
from
Open

Commits on Sep 19, 2024

  1. chore(tests): simplify blockdev output checking

    It doesn't end up much shorter but at least it is more readable.
    
    Signed-off-by: Pablo Barbáchano <[email protected]>
    pb8o committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    82d4f83 View commit details
    Browse the repository at this point in the history
  2. tests: drop pandas dependency

    Rewrite the only test that needs pandas.
    
    pandas is a heavy dependency that weighs in around 50MB. It also
    recently started printing a warning that in the future it will require
    pyarrow, which is another 40 MB.
    
    Pandas is great, however our usage of it is minimal.
    
    Size of devctr does not change much, but we avoid the warning, and not
    having to deal with pyarrow in the future.
    
    Example output:
    ```
    MSR removed 0x13 before=0x0
    MSR changed 0x179 before=0x20ffff after=0x20
    MSR added 0x17 after=0x0
    MSR added 0x11 after=0x25ba008
    ```
    
    Signed-off-by: Pablo Barbáchano <[email protected]>
    pb8o committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    edf57eb View commit details
    Browse the repository at this point in the history
  3. tests: capture stdout in cpu_template tests

    Capture stdout in those tests. There is no reason why we should run
    those tests differently than the others.
    
    Also add worksteal option to xdist.
    
    Signed-off-by: Pablo Barbáchano <[email protected]>
    pb8o committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    10514ce View commit details
    Browse the repository at this point in the history
  4. devctr: install Rust minimal profile

    This was reverted in 157b739, but since
    then we have added more Rust toolchains, so it adds up. Removing reduces
    the image size quite a bit:
    
    Uncompressed: 4.57GiB -> 3.31 GiB (-28%)
    Compressed: 1213MiB -> 1058MiB (-13%)
    
    Signed-off-by: Pablo Barbáchano <[email protected]>
    pb8o committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    e700a00 View commit details
    Browse the repository at this point in the history
  5. devctr: drop dmidecode dependency

    This was partially done in c839707. We
    can also drop it from the dependency list.
    
    Fixes: c839707
    
    Signed-off-by: Pablo Barbáchano <[email protected]>
    pb8o committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    4c24a7f View commit details
    Browse the repository at this point in the history
  6. devctr: add squashfs-tools dependency

    This is to be able to manipulate squashfs images during test runs.
    
    Signed-off-by: Pablo Barbáchano <[email protected]>
    pb8o committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    3b78c1e View commit details
    Browse the repository at this point in the history
  7. chore(devctr): update devctr to Ubuntu 24.04

    Notably, Python and poetry required some changes to keep working the way
    it was, as installing Python modules via pip outside a venv is getting
    more and more difficult.
    
    Raised the versions of Python dependencies, and updated some pinned
    versions.
    
    Signed-off-by: Pablo Barbáchano <[email protected]>
    pb8o committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    a25b399 View commit details
    Browse the repository at this point in the history
  8. tests: remove spurious assignments

    Remove some assignments without purpose.
    
    Signed-off-by: Pablo Barbáchano <[email protected]>
    pb8o committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    3e397a6 View commit details
    Browse the repository at this point in the history
  9. tests: fix new pylint issues

    New version of Pylint complains about a few
    `possibly-used-before-assignment`.
    
    Signed-off-by: Pablo Barbáchano <[email protected]>
    pb8o committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    8cb00d3 View commit details
    Browse the repository at this point in the history
  10. tests: send more data during rate_limit test to help iperf3

    iperf3 3.16 needs to send more data to reliably detect the throughtput.
    
    Signed-off-by: Pablo Barbáchano <[email protected]>
    pb8o committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    4d6b0cc View commit details
    Browse the repository at this point in the history
  11. ci: use new devctr

    Use the new devctr from latest changes
    
    Signed-off-by: Pablo Barbáchano <[email protected]>
    pb8o committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    77c4f4e View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2024

  1. Configuration menu
    Copy the full SHA
    a82203a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2ac41fa View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2024

  1. Configuration menu
    Copy the full SHA
    b4af84d View commit details
    Browse the repository at this point in the history