From 0519ef9c9b1a0b543486dbab6b5743002d46eae5 Mon Sep 17 00:00:00 2001 From: Stefan Ceriu Date: Mon, 29 Sep 2025 12:07:13 +0300 Subject: [PATCH] Switch all workflow runners back to macos-15 in hope that it will require less ram and won't time out. --- .github/workflows/accessibility_tests.yml | 2 +- .github/workflows/automatic-calendar-version.yml | 2 +- .github/workflows/danger.yml | 2 +- .github/workflows/integration-tests.yml | 2 +- .github/workflows/translations-pr.yml | 2 +- .github/workflows/ui_tests.yml | 2 +- .github/workflows/unit_tests.yml | 2 +- .github/workflows/unit_tests_enterprise.yml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/accessibility_tests.yml b/.github/workflows/accessibility_tests.yml index 14c11c4b8..05a6bc595 100644 --- a/.github/workflows/accessibility_tests.yml +++ b/.github/workflows/accessibility_tests.yml @@ -9,7 +9,7 @@ on: jobs: tests: name: Tests - runs-on: macos-26 + runs-on: macos-15 concurrency: # Only allow a single run of this workflow on each branch, automatically cancelling older runs. diff --git a/.github/workflows/automatic-calendar-version.yml b/.github/workflows/automatic-calendar-version.yml index da82e7971..9e6bceeeb 100644 --- a/.github/workflows/automatic-calendar-version.yml +++ b/.github/workflows/automatic-calendar-version.yml @@ -11,7 +11,7 @@ on: # Patch bumps are handled by the release script. jobs: automatic-calendar-version: - runs-on: macos-26 + runs-on: macos-15 # Skip in forks if: github.repository == 'element-hq/element-x-ios' steps: diff --git a/.github/workflows/danger.yml b/.github/workflows/danger.yml index 9c85b66af..dd72ed120 100644 --- a/.github/workflows/danger.yml +++ b/.github/workflows/danger.yml @@ -7,7 +7,7 @@ on: jobs: build: name: Danger - runs-on: macos-26 + runs-on: macos-15 steps: - name: Checkout diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index fad570a06..241713286 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -9,7 +9,7 @@ on: jobs: integration_tests: name: Integration Tests - runs-on: macos-26-xlarge + runs-on: macos-15 concurrency: # Only allow a single run of this workflow on each branch, automatically cancelling older runs. diff --git a/.github/workflows/translations-pr.yml b/.github/workflows/translations-pr.yml index cf28e23ab..63ce7a629 100644 --- a/.github/workflows/translations-pr.yml +++ b/.github/workflows/translations-pr.yml @@ -7,7 +7,7 @@ on: jobs: open-translations-pr: - runs-on: macos-26 + runs-on: macos-15 # Skip in forks if: github.repository == 'element-hq/element-x-ios' steps: diff --git a/.github/workflows/ui_tests.yml b/.github/workflows/ui_tests.yml index 7d20239ba..685814bf2 100644 --- a/.github/workflows/ui_tests.yml +++ b/.github/workflows/ui_tests.yml @@ -13,7 +13,7 @@ on: jobs: tests: name: Tests - runs-on: macos-26-xlarge + runs-on: macos-15 strategy: fail-fast: false matrix: diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index af3253770..36e58f59c 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -11,7 +11,7 @@ on: jobs: tests: name: Tests - runs-on: macos-26-xlarge + runs-on: macos-15 concurrency: # Only allow a single run of this workflow on each branch, automatically cancelling older runs. diff --git a/.github/workflows/unit_tests_enterprise.yml b/.github/workflows/unit_tests_enterprise.yml index e1febd0b3..e7f79af37 100644 --- a/.github/workflows/unit_tests_enterprise.yml +++ b/.github/workflows/unit_tests_enterprise.yml @@ -11,7 +11,7 @@ on: jobs: tests: name: Tests (Enterprise) - runs-on: macos-26-xlarge + runs-on: macos-15 # Skip in forks if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }}