metadata: format: Lava-Test Test Definition 1.0 name: x86-env-setup description: "Basic environment setup for x86 board" os: - debian - ubuntu devices: - x86 run: steps: - chmod 755 / - echo nameserver 172.18.0.13 > /etc/resolv.conf - ip a - groupadd tracing - depmod -a # The locale generation is required for the python venv # to be correctgly created. - locale-gen en_US.UTF-8 - python3 -m venv /root/python-venv - source /root/python-venv/bin/activate - pip3 install vlttng - hash -r - git clone "${CI_REPO}" --branch="${CI_BRANCH}" ci - mkdir -p /root/.ssh - chmod 700 /root/.ssh - cp lava/system-tests/authorized_keys /root/.ssh/authorized_keys - chmod 600 /root/.ssh/authorized_keys - sync