From 53b46ed492bdcdc3b10dba6a4b6e3c96f732183e Mon Sep 17 00:00:00 2001 From: Craig Colegrove Date: Mon, 25 Nov 2024 15:00:06 -0800 Subject: [PATCH] Try fewer builds --- .github/workflows/ci.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 274ed4c..687fadf 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -81,7 +81,13 @@ jobs: strategy: matrix: api-level: [24, 30] - arch: [x86, x86_64, arm64-v8a] + include: + - api-level: 24 + arch: x86 + - api-level: 30 + arch: x86_64 + - api-level: 30 + arch: arm64-v8a steps: - name: Checkout uses: actions/checkout@v4