diff --git a/.github/workflows/integration-metrics.yaml b/.github/workflows/integration-metrics.yaml index 13b85d58a..0b2d1364a 100644 --- a/.github/workflows/integration-metrics.yaml +++ b/.github/workflows/integration-metrics.yaml @@ -7,7 +7,7 @@ on: jobs: build: name: Tests (Metrics) - runs-on: bare-metal-9950x + runs-on: garm-jammy-16 env: METRICS_PUBLISH_KEY: ${{ secrets.METRICS_PUBLISH_KEY }} steps: @@ -15,8 +15,18 @@ jobs: 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_ -- --report-file /root/workloads/metrics.json + 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' diff --git a/.lychee.toml b/.lychee.toml index 54cd92f57..f23716042 100644 --- a/.lychee.toml +++ b/.lychee.toml @@ -23,6 +23,9 @@ exclude = [ '^tcp://192\.168\.1\.10', # Slack invite endpoints reject automated GETs and return 403. '^https://join\.slack\.com/t/', + # Metrics publish endpoint only answers authenticated PUTs; a plain GET + # returns 404. + '^https://ch-metrics\.azurewebsites\.net/api/publishmetrics', ] # Exclude loopback addresses