These are hopefully better available from github actions than the GNU ftpmirror host, which hasn't responded well to github actions for quite some time.
We already use github actions' caching for avoiding redownloading these files when possible, but whenever there's a cache miss, downloading them has often failed before. Signed-off-by: Martin Storsjö <[email protected]> --- Unfortunately, these don't seem to be entirely reliable either; in a first test build, 3 out of 4 build jobs succeeded. If there are other suggestions from where to download these projects sources, that would be more reliable when fetched from github actions, I'm open for suggestions. --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 64f6beb4e..41397cd0b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -446,9 +446,9 @@ jobs: run: | mkdir -p /opt/gnu cd /opt/gnu - curl -LO https://ftpmirror.gnu.org/gnu/gmp/gmp-6.3.0.tar.xz - curl -LO https://ftpmirror.gnu.org/gnu/mpfr/mpfr-4.2.1.tar.xz - curl -LO https://ftpmirror.gnu.org/gnu/mpc/mpc-1.3.1.tar.gz + curl -LO https://gmplib.org/download/gmp/gmp-6.3.0.tar.xz + curl -LO https://www.mpfr.org/mpfr-4.2.1/mpfr-4.2.1.tar.xz + curl -LO https://www.multiprecision.org/downloads/mpc-1.3.1.tar.gz - name: Build dependencies run: | PREFIX=$(pwd)/prefix -- 2.43.0 _______________________________________________ Mingw-w64-public mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mingw-w64-public
