Skip to content

Commit 97e74db

Browse files
committed
CI: Work arround issue with rate limited server for gmp
1 parent d295247 commit 97e74db

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/ci.yml

+7
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,13 @@ jobs:
4848
- name: Build toolchain
4949
shell: bash
5050
run: |
51+
# Hack: Downloading gmp often fails on github. Seems that the server
52+
# is rate limited or something like that. So pre-fetch the file from a
53+
# mirror.
54+
make submodule-update
55+
mkdir external/rtems-source-builder/rtems/sources
56+
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
57+
# Hack end
5158
make install
5259
if [ "$RUNNER_OS" == "Linux" ]; then
5360
make barebox

0 commit comments

Comments
 (0)