Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,18 @@ jobs:
- name: macos-14
arch: aarch64
target:
- x86_64-unknown-linux-gnu
- x86_64-unknown-linux-musl
- i686-unknown-linux-gnu
- i686-unknown-linux-musl
- aarch64-unknown-linux-gnu
- aarch64-unknown-linux-musl
# - x86_64-unknown-linux-gnu
# - x86_64-unknown-linux-musl
# - i686-unknown-linux-gnu
# - i686-unknown-linux-musl
# - aarch64-unknown-linux-gnu
# - aarch64-unknown-linux-musl
- armv7-unknown-linux-gnueabihf
- armv7-unknown-linux-musleabihf
# - armv7-unknown-linux-musleabihf
- arm-unknown-linux-gnueabi
- arm-unknown-linux-gnueabihf
- arm-unknown-linux-musleabihf
- mipsel-unknown-linux-gnu
# - arm-unknown-linux-musleabihf
# - mipsel-unknown-linux-gnu
Comment on lines +31 to +42
Copy link

Copilot AI Dec 5, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Most of the build targets have been commented out, leaving only 3 ARM targets active. This significantly reduces the build matrix from 12 to 3 targets.

If this is intended as a temporary change for testing GCC-15 compatibility, consider:

  1. Adding a comment in the workflow explaining this is temporary
  2. Creating a separate workflow or branch for testing rather than modifying the main build workflow
  3. Ensuring all targets are re-enabled before merging to production

If this is permanent, it would be a breaking change that removes support for popular architectures like x86_64 and aarch64.

Copilot uses AI. Check for mistakes.
steps:
- uses: actions/checkout@v4
- name: Install crosstool-ng
Expand Down