We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d295247 commit 97e74dbCopy full SHA for 97e74db
.github/workflows/ci.yml
@@ -48,6 +48,13 @@ jobs:
48
- name: Build toolchain
49
shell: bash
50
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
58
make install
59
if [ "$RUNNER_OS" == "Linux" ]; then
60
make barebox
0 commit comments