From 13f026c4fef9b443806ed1af6212d33053645172 Mon Sep 17 00:00:00 2001 From: Michalis Kamburelis Date: Mon, 5 Aug 2024 18:30:37 +0200 Subject: [PATCH] Again give up on raspberry_pi_64 --- .github/workflows/build.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 94002a8..18f0f20 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,7 +25,9 @@ jobs: # - TODO: "ld: library not found for -lc", # see solutions on https://forum.lazarus.freepascal.org/index.php?topic=61430.15 # - For now, in the end: using self-hosted macos_x64 for Intel mac. - runner: [ubuntu-latest, windows-latest, macos_x64, raspberry_pi_64, raspberry_pi_32] + runner: [ubuntu-latest, windows-latest, macos_x64, + #raspberry_pi_64, + raspberry_pi_32] include: # Set matrix.is_unix, makes if conditions easier. - is_unix: false @@ -33,15 +35,15 @@ jobs: is_unix: true - runner: macos_x64 is_unix: true - - runner: raspberry_pi_64 - is_unix: true + # - runner: raspberry_pi_64 + # is_unix: true - runner: raspberry_pi_32 is_unix: true # Set matrix.needs_fpc_fixes_branch, when you need FPC 3.2.3 (fixes_3_2 branch) - needs_fpc_fixes_branch: false - - runner: raspberry_pi_64 - needs_fpc_fixes_branch: true + # - runner: raspberry_pi_64 + # needs_fpc_fixes_branch: true runs-on: ${{ matrix.runner }} steps: - uses: actions/checkout@v4