diff options
author | Chris Packham <judge.packham@gmail.com> | 2021-03-25 16:12:57 +1300 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2021-03-25 16:16:25 +1300 |
commit | 0630e41d69e797606a50e83915f4173361913ba7 (patch) | |
tree | 8e5b84a9864da914d18a1715675dfcfb1de8764f /.github | |
parent | 4989e53336791e44dc50b8d1d32c1d11de054de2 (diff) | |
download | crosstool-ng-0630e41d69e797606a50e83915f4173361913ba7.tar.gz crosstool-ng-0630e41d69e797606a50e83915f4173361913ba7.tar.bz2 crosstool-ng-0630e41d69e797606a50e83915f4173361913ba7.zip |
CI: build sh-unknown-elf instead of sh-multilib-linux-gnu
sh-multilib-linux-gnu ends up building 8 different libcs. This seems to
be problematic for the github hosted runners as it appears to run them
out of disk space (anecdotally this seems to have gotten worse with the
switch from ubuntu-18.04 to ubuntu-20.04).
Build sh-unknown-elf instead to make sure we cover of the sh
architecture to some degree.
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/continuous-integration-workflow.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml index 2a295597..bb65fd05 100644 --- a/.github/workflows/continuous-integration-workflow.yml +++ b/.github/workflows/continuous-integration-workflow.yml @@ -74,7 +74,7 @@ jobs: "riscv32-unknown-elf", "riscv64-unknown-elf", "s390-unknown-linux-gnu", - "sh-multilib-linux-gnu", + "sh-unknown-elf", "sparc-unknown-linux-gnu", "x86_64-unknown-linux-gnu", "x86_64-multilib-linux-uclibc", |