mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2026-08-05 02:19:16 +00:00
The metrics test list has grown significantly and no longer finishes even within the 60-minute timeout. Exclude the block_qcow2 group (30 tests) in addition to the micro benchmarks, leaving a 30-test set that completes meaningfully (~41 minutes in my testing). Trimming and re-tuning the metrics test list is tracked in #8551. Since the underlying bare-metal system is also retired, run the metrics tests on the garm-jammy-16 (Azure VM) runner instead. Signed-off-by: Bo Chen <bchen@crusoe.ai>
33 lines
1.4 KiB
YAML
33 lines
1.4 KiB
YAML
name: Cloud Hypervisor Tests (Metrics)
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
name: Tests (Metrics)
|
|
runs-on: garm-jammy-16
|
|
env:
|
|
METRICS_PUBLISH_KEY: ${{ secrets.METRICS_PUBLISH_KEY }}
|
|
steps:
|
|
- name: Code checkout
|
|
uses: actions/checkout@v7
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Install Docker
|
|
run: |
|
|
set -eufo pipefail
|
|
sudo apt-get update
|
|
sudo apt-get -y install ca-certificates curl gnupg
|
|
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
|
|
sudo chmod a+r /usr/share/keyrings/docker-archive-keyring.gpg
|
|
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
|
|
sudo apt-get update
|
|
sudo apt install -y docker-ce docker-ce-cli
|
|
- name: Run metrics tests
|
|
timeout-minutes: 60
|
|
run: scripts/dev_cli.sh tests --metrics -- --test-exclude micro_,block_qcow2 -- --report-file /root/workloads/metrics.json
|
|
- name: Upload metrics report
|
|
run: 'curl -X PUT https://ch-metrics.azurewebsites.net/api/publishmetrics -H "x-functions-key: $METRICS_PUBLISH_KEY" -T ~/workloads/metrics.json'
|