Skip to content

Commit e1a17bc

Browse files
committed
dl
1 parent cb4e44c commit e1a17bc

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

build-wheels-windows.bat

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,11 @@ cmake --build build_hdf5 --config Release --target install
7676

7777
:: med
7878
set "MED_VERSION=4.2.0"
79-
curl -LO https://www.code-saturne.org/releases/external/med-%MED_VERSION%.tar.gz
79+
::https://files.salome-platform.org/Salome/medfile/med-4.2.0.tar.gz
80+
curl -L -o med-%MED_VERSION%.tar.gz https://files.catbox.moe/zm3to1.gz
8081
7z x med-%MED_VERSION%.tar.gz > nul
8182
7z x med-%MED_VERSION%.tar > nul
82-
cmake -LAH -S med-%MED_VERSION%_SRC -B build_med -DCMAKE_INSTALL_PREFIX=C:/Libraries/med -DHDF5_ROOT_DIR=C:/Libraries/hdf5 ^
83+
cmake -LAH -S med-%MED_VERSION% -B build_med -DCMAKE_INSTALL_PREFIX=C:/Libraries/med -DHDF5_ROOT_DIR=C:/Libraries/hdf5 ^
8384
-DMEDFILE_BUILD_TESTS=OFF -DMEDFILE_INSTALL_DOC=OFF
8485
cmake --build build_med --config Release --target install
8586

docker/manylinux/Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
21
FROM quay.io/pypa/manylinux2014_x86_64
3-
MAINTAINER jschueller
42

53
ENV MAKEFLAGS -j8
64
WORKDIR /usr/local/src
@@ -23,7 +21,8 @@ RUN curl -fsSL https://download.gnome.org/sources/libxml2/2.10/libxml2-2.10.3.ta
2321
&& ./configure --without-python && make > /dev/null 2>&1 && make install > /dev/null 2>&1 && cd - && rm -r libxml2*
2422

2523
# med
26-
RUN curl -fSsL https://files.salome-platform.org/Salome/medfile/med-4.2.0.tar.gz | tar xz \
24+
# https://files.salome-platform.org/Salome/medfile/med-4.2.0.tar.gz
25+
RUN curl -fSsL https://files.catbox.moe/zm3to1.gz | tar xz \
2726
&& cmake -S med-4.2.0 -B build_med -LAH -DCMAKE_BUILD_TYPE=Release \
2827
-DMEDFILE_BUILD_TESTS=OFF -DMEDFILE_INSTALL_DOC=OFF -DHDF5_DIR=$PWD/install/share/cmake/hdf5 \
2928
&& cmake --build build_med --target install

0 commit comments

Comments
 (0)