Skip to content

Fix: Error fetching message from vm-connector for start_watch_for_mes… #452

Fix: Error fetching message from vm-connector for start_watch_for_mes…

Fix: Error fetching message from vm-connector for start_watch_for_mes… #452

---
name: "py.test and linting"
on: push
jobs:
tests-python:
name: "Test Python code"
runs-on: ubuntu-22.04
services:
# Run vm connector for the execution tests
vm-connector:
image: alephim/vm-connector:alpha
ports:
- 4021:4021
steps:
- uses: actions/checkout@v4
- name: Workaround github issue https:/actions/runner-images/issues/7192
run: sudo echo RESET grub-efi/install_devices | sudo debconf-communicate grub-pc
- name: Install required system packages only for Ubuntu Linux
run: |
sudo apt-get update
sudo apt-get -y upgrade
sudo apt-get install -y python3 python3-pip python3-aiohttp python3-msgpack python3-aiodns python3-alembic python3-sqlalchemy python3-setproctitle redis python3-aioredis python3-psutil sudo acl curl systemd-container squashfs-tools debootstrap python3-packaging python3-cpuinfo python3-nftables python3-jsonschema nftables
pip install --upgrade typing-extensions types-PyYAML
- name: Install required Python packages
run: |
python3 -m pip install hatch hatch-vcs coverage
- name: Test style wth ruff, black and isort
run: |
hatch run linting:style
- name: Test typing with Mypy
run: |
hatch run linting:typing
- name: Install required system packages for installing and running tests
run: |
sudo apt-get install libsystemd-dev cmake libdbus-1-dev libglib2.0-dev
- name: Download and build required files for running tests. Copied from packaging/Makefile.
run: |
sudo useradd jailman
sudo mkdir --parents /opt/firecracker/
sudo curl -fsSL -o "/opt/firecracker/vmlinux.bin" "https://ipfs.aleph.cloud/ipfs/bafybeiaj2lf6g573jiulzacvkyw4zzav7dwbo5qbeiohoduopwxs2c6vvy"
rm -fr /tmp/firecracker-release
mkdir --parents /tmp/firecracker-release /opt/firecracker
curl -fsSL https:/firecracker-microvm/firecracker/releases/download/v1.5.0/firecracker-v1.5.0-x86_64.tgz | tar -xz --no-same-owner --directory /tmp/firecracker-release
# Copy binaries:
cp /tmp/firecracker-release/release-v*/firecracker-v*[!.debug] /opt/firecracker/firecracker
cp /tmp/firecracker-release/release-v*/jailer-v*[!.debug] /opt/firecracker/jailer
chmod +x /opt/firecracker/firecracker
chmod +x /opt/firecracker/jailer
# this produces a 33 MB log
# find /opt
- name: "Build custom runtimes"
run: |
sudo apt update
sudo apt install -y debootstrap ndppd acl cloud-image-utils qemu-utils qemu-system-x86
cd runtimes/aleph-debian-12-python && sudo ./create_disk_image.sh && cd ../..
cd runtimes/instance-rootfs && sudo ./create-ubuntu-22-04-qemu-disk.sh && cd ../..
cd runtimes/instance-rootfs && sudo ./create-debian-12-disk.sh && cd ../..
- name: "Build example volume"
run: |
cd examples/volumes && bash build_squashfs.sh
# Unit tests create and delete network interfaces, and therefore require to run as root
- name: Run unit tests
run: |
sudo python3 -m pip install hatch hatch-vcs coverage
sudo hatch run testing:cov
- name: Output modules used and their version
if: always()
run: |
# re-install hatch in case previous job failed and hatch didn't get installed
sudo python3 -m pip install hatch hatch-vcs coverage
sudo hatch -e testing run pip freeze
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: aleph-im/aleph-vm
code-quality-shell:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Workaround github issue https:/actions/runner-images/issues/7192
run: sudo echo RESET grub-efi/install_devices | sudo debconf-communicate grub-pc
- name: Install required system packages only for Ubuntu Linux
run: |
sudo apt-get update
sudo apt-get install -y shellcheck
- name: Run Shellcheck on all shell scripts
run: |-
find ./ -type f -name "*.sh" -exec shellcheck {} \;