Skip to content

Commit

Permalink
CI: Work arround issue with rate limited server for gmp
Browse files Browse the repository at this point in the history
  • Loading branch information
c-mauderer committed Jun 7, 2024
1 parent d295247 commit 0d60fba
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,13 @@ jobs:
- name: Build toolchain
shell: bash
run: |
# Hack: Downloading gmp often fails on github. Seems that the server
# is rate limited or something like that. So pre-fetch the file from a
# mirror.
make submodule-update
mkdir external/rtems-source-builder/rtems/sources
wget -o external/rtems-source-builder/rtems/sources/gmp-6.3.0.tar.bz2 https://ftp.gnu.org/gnu/gmp/gmp-6.3.0.tar.bz2
# Hack end
make install
if [ "$RUNNER_OS" == "Linux" ]; then
make barebox
Expand Down

0 comments on commit 0d60fba

Please sign in to comment.