From 64accc1e98e63993f6361a02e71315de3287ce69 Mon Sep 17 00:00:00 2001 From: Junho Choi Date: Mon, 3 Feb 2025 20:29:07 +0900 Subject: [PATCH] ci: add ubuntu-24.04-arm Ubuntu ARM runner is available. https://github.blog/changelog/2025-01-16-linux-arm64-hosted-runners-now-available-for-free-in-public-repositories-public-preview/ --- .github/workflows/stable.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/stable.yml b/.github/workflows/stable.yml index 77fa8e8f40..d8b2cdcceb 100644 --- a/.github/workflows/stable.yml +++ b/.github/workflows/stable.yml @@ -12,13 +12,14 @@ concurrency: jobs: quiche: - runs-on: ubuntu-latest strategy: matrix: tls-feature: - "" # default, boringssl-vendored - "boringssl-boring-crate" - "openssl" + os: [ubuntu-latest, ubuntu-24.04-arm] + runs-on: ${{ matrix.os }} # Only run on "pull_request" event for external PRs. This is to avoid # duplicate builds for PRs created from internal branches. if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository