From 04f44d14e4cbba1fab33269b44e2edc6e5efc365 Mon Sep 17 00:00:00 2001 From: Ondrej Popelka Date: Sat, 11 Jul 2026 23:51:52 +0200 Subject: [PATCH 1/2] Revert "ci: free disk space before Runner Tests to avoid Docker pull failures" --- azure-pipelines.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 522df23b..08526574 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -61,15 +61,6 @@ stages: displayName: 'Runner Tests' timeoutInMinutes: 100 steps: - - script: | - echo '=== disk usage before cleanup ===' - df -h / - sudo du -sh /usr/share/dotnet /usr/local/lib/android /opt/ghc /usr/local/.ghcup /opt/hostedtoolcache 2>/dev/null | sort -h || true - sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/ghc /usr/local/.ghcup /opt/hostedtoolcache/CodeQL - docker system prune -af || true - echo '=== disk usage after cleanup ===' - df -h / - displayName: 'Free disk space' - script: | docker compose build --pull docker compose run tests ./vendor/bin/phpunit --testsuite runner-tests From f90d2bac89ad0bfe4587f713e330b34a6dd31ea6 Mon Sep 17 00:00:00 2001 From: Odin Date: Mon, 13 Jul 2026 22:12:50 +0200 Subject: [PATCH 2/2] ci: run Runner Tests on Default pool --- azure-pipelines.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 08526574..d21edfd7 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -59,6 +59,8 @@ stages: - job: runnerTests displayName: 'Runner Tests' + pool: + name: 'Default' timeoutInMinutes: 100 steps: - script: |