Skip to content

Commit

Permalink
Comment out Raspberry Pi runners usage
Browse files Browse the repository at this point in the history
  • Loading branch information
michaliskambi committed Nov 27, 2024
1 parent 1a28746 commit 35b3156
Showing 1 changed file with 22 additions and 12 deletions.
34 changes: 22 additions & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,28 +20,38 @@ jobs:
name: Build
strategy:
matrix:
# For macOS:
# - Old note: Using macos-12, not macos-latest, for Intel mac.
# - 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,

# For macOS:
# - Old note: Using macos-12, not macos-latest, for Intel mac.
# - 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.
macos_x64

# We use arm-runner for Raspberry Pi builds now, to not have costs of maintaining our own runners.
# TODO: Implement arm-runner usage; for now, we don't build FPC for Raspberry Pi.
#raspberry_pi_64,
#raspberry_pi_32
]
include:
# Set matrix.is_unix, makes if conditions easier.
- is_unix: false
- runner: ubuntu-latest
is_unix: true
- runner: macos_x64
is_unix: true
- runner: raspberry_pi_64
is_unix: true
- runner: raspberry_pi_32
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
Expand Down

0 comments on commit 35b3156

Please sign in to comment.