From 39720a8e072d88d79acb610c75dae6bc12de2fba Mon Sep 17 00:00:00 2001 From: Kristaps Kaupe Date: Thu, 25 Apr 2024 13:46:10 +0300 Subject: [PATCH] CI: Use x64 not arm64 macOS ARM (M1) GitHub runner doesn't have Python 3.8 available. EOL of 3.8 is 31 Oct 2024, would be good to continue support, unless there are some bigger reasons to drop it sooner. And macos-latest was recently changed to M1, see . This fixes current non-random always happening CI failures. --- .github/workflows/unittests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unittests.yml b/.github/workflows/unittests.yml index f08bbce49..d307b6eec 100644 --- a/.github/workflows/unittests.yml +++ b/.github/workflows/unittests.yml @@ -8,7 +8,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [macos-latest, ubuntu-latest] + os: [macos-13, ubuntu-latest] python-version: ["3.8", "3.11"] bitcoind-version: ["0.18.0", "26.0"]