Skip to content

Commit

Permalink
Disable avr-elf on MacOS X ARM64
Browse files Browse the repository at this point in the history
because avr-libc doesn't recognize this machine.
  • Loading branch information
reznikmm committed Aug 18, 2024
1 parent 2c31116 commit 3956b1a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ jobs:

gnat_cross:
strategy:
fail-fast: false
matrix:
target: ["arm-elf", "esp32-elf", "riscv64-elf", "avr-elf"]
name: GNAT ${{ matrix.target }}-linux
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ jobs:

gnat_cross:
strategy:
fail-fast: false
matrix:
target: ["arm-elf", "esp32-elf", "riscv64-elf", "avr-elf"]
name: GNAT ${{ matrix.target }}-darwin
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/macos_arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,11 @@ jobs:

gnat_cross:
strategy:
fail-fast: false
matrix:
target: ["arm-elf", "esp32-elf", "riscv64-elf", "avr-elf"]
target: ["arm-elf", "esp32-elf", "riscv64-elf"] # , "avr-elf"]
# libc-avr doesn't recognize aarch64-apple machine
# https://github.com/avrdudes/avr-libc/issues/978
name: GNAT ${{ matrix.target }}-darwin
needs: gnat
runs-on: macos-14
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ jobs:

gnat_cross:
strategy:
fail-fast: false
matrix:
target: ["arm-elf", "esp32-elf", "riscv64-elf", "avr-elf"]
name: GNAT ${{ matrix.target }}-windows
Expand Down

0 comments on commit 3956b1a

Please sign in to comment.