feat: Add functional test for update agent [ORBP-573] #25
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Github workflow for update-agent | |
name: update-agent | |
on: | |
pull_request: | |
workflow_dispatch: | |
workflow_call: | |
secrets: | |
GIT_HUB_TOKEN: | |
required: true | |
push: | |
branches: | |
- main | |
- prod | |
tags: | |
- '**' | |
jobs: | |
test: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get -y install libguestfs-tools pkg-config libssl-dev build-essential cargo libudev-dev protobuf-compiler | |
cargo install nu --locked | |
- name: make host kernel image readable, for guestfish | |
run: sudo chmod +r /boot/vmlinuz-* | |
- name: Build | |
run: | | |
cd update-agent | |
cargo build --features skip-manifest-signature-verification | |
- name: Run functional tests | |
run: | | |
cd update-agent/t | |
./podman-runner.nu mock mock_path | |
./podman-runner.nu check mock_path |