diff options
author | Chris Packham <judge.packham@gmail.com> | 2023-03-13 20:10:37 +1300 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2023-03-14 08:49:56 +1300 |
commit | 247f1f86cd0edbc6b8fd575cfb1155190a2a6e69 (patch) | |
tree | 497a770fedf90d0007b3c240142c270a34ed92ba /.github | |
parent | 5248760ea94321cebfc460c5d260c3043dc128e6 (diff) | |
download | crosstool-ng-247f1f86cd0edbc6b8fd575cfb1155190a2a6e69.tar.gz crosstool-ng-247f1f86cd0edbc6b8fd575cfb1155190a2a6e69.tar.bz2 crosstool-ng-247f1f86cd0edbc6b8fd575cfb1155190a2a6e69.zip |
CI: Exclude macos,arm-picolibc-eabi combination
The arm-picolibc-eabi build runs out of space on the macos makers
because of all the multilib permutations. For now disable the
macos,arm-picolibc-eabi combination until we can think of something
better.
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build-toolchains.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/build-toolchains.yml b/.github/workflows/build-toolchains.yml index 09f9864d..85879f6f 100644 --- a/.github/workflows/build-toolchains.yml +++ b/.github/workflows/build-toolchains.yml @@ -34,6 +34,10 @@ jobs: - {host: "macos-latest", sample: "mips-unknown-linux-gnu"} - {host: "macos-latest", sample: "mips64-unknown-linux-gnu"} + # Exclude arm-picolibc-eabi because the multilib build output takes + # up too much room on the macos makers + - {host: "macos-latest", sample: "arm-picolibc-eabi"} + # Exclude x86_64-w64-mingw32,x86_64-pc-linux-gnu because it crashes on m4 build with # a Segmentation fault - {host: "macos-latest", sample: "x86_64-w64-mingw32,x86_64-pc-linux-gnu"} |