Skip to content
Snippets Groups Projects
Commit d0fad11e authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

https

parent 517f099c
No related branches found
No related tags found
No related merge requests found
Pipeline #7656 passed
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
DATE=`date "+%d/%m/%Y"` DATE=`date "+%d/%m/%Y"`
echo "This ONELAB bundle was built on ${DATE} with the latest builds of Gmsh echo "This ONELAB bundle was built on ${DATE} with the latest builds of Gmsh
(http://gmsh.info) and GetDP (http://getdp.info). (https://gmsh.info) and GetDP (https://getdp.info).
To run your first simulation, launch Gmsh and open a GetDP .pro file To run your first simulation, launch Gmsh and open a GetDP .pro file
(e.g. models/Magnetometer/magnetometer.pro) with the File/Open menu, then click (e.g. models/Magnetometer/magnetometer.pro) with the File/Open menu, then click
...@@ -13,10 +13,10 @@ The software is distributed under the terms of the GNU General Public License. ...@@ -13,10 +13,10 @@ The software is distributed under the terms of the GNU General Public License.
See the LICENSE and CREDITS files for more information. See the LICENSE and CREDITS files for more information.
The 'tutorials' directory contains ONELAB tutorials. The 'models' directory The 'tutorials' directory contains ONELAB tutorials. The 'models' directory
contains a selection of other ready-to-use models from http://onelab.info. The contains a selection of other ready-to-use models from https://onelab.info. The
'templates' directory contains generic model templates. 'templates' directory contains generic model templates.
See http://onelab.info for additional examples, up-to-date versions and See https://onelab.info for additional examples, up-to-date versions and
documentation." > /tmp/README.txt documentation." > /tmp/README.txt
GMSH=git GMSH=git
...@@ -36,7 +36,7 @@ MODELS=`cat bundle_models.txt` ...@@ -36,7 +36,7 @@ MODELS=`cat bundle_models.txt`
rm -rf /tmp/models rm -rf /tmp/models
mkdir /tmp/models mkdir /tmp/models
for m in ${MODELS}; do for m in ${MODELS}; do
curl -O http://onelab.info/files/${m}.zip curl -O https://onelab.info/files/${m}.zip
unzip -q -o ${m}.zip -d /tmp/models unzip -q -o ${m}.zip -d /tmp/models
rm -f ${m}.zip rm -f ${m}.zip
done done
...@@ -46,19 +46,19 @@ mkdir /tmp/tutorials ...@@ -46,19 +46,19 @@ mkdir /tmp/tutorials
mkdir /tmp/tutorials/gmsh mkdir /tmp/tutorials/gmsh
mkdir /tmp/tutorials/getdp mkdir /tmp/tutorials/getdp
for m in ${TUTO_GETDP}; do for m in ${TUTO_GETDP}; do
curl -O http://onelab.info/files/${m}.zip curl -O https://onelab.info/files/${m}.zip
unzip -q -o ${m}.zip -d /tmp/tutorials/getdp unzip -q -o ${m}.zip -d /tmp/tutorials/getdp
rm -f ${m}.zip rm -f ${m}.zip
done done
mkdir /tmp/tutorials/python mkdir /tmp/tutorials/python
for m in ${TUTO_PYTHON}; do for m in ${TUTO_PYTHON}; do
curl -O http://onelab.info/files/${m}.zip curl -O https://onelab.info/files/${m}.zip
unzip -q -o ${m}.zip -d /tmp/tutorials/python unzip -q -o ${m}.zip -d /tmp/tutorials/python
rm -f ${m}.zip rm -f ${m}.zip
done done
mkdir /tmp/tutorials/c++ mkdir /tmp/tutorials/c++
for m in ${TUTO_CPP}; do for m in ${TUTO_CPP}; do
curl -O http://onelab.info/files/${m}.zip curl -O https://onelab.info/files/${m}.zip
unzip -q -o ${m}.zip -d /tmp/tutorials/c++ unzip -q -o ${m}.zip -d /tmp/tutorials/c++
rm -f ${m}.zip rm -f ${m}.zip
done done
...@@ -68,8 +68,8 @@ rm -rf /tmp/tutorials/optlab/.git ...@@ -68,8 +68,8 @@ rm -rf /tmp/tutorials/optlab/.git
if [ $# -lt 1 ] || [ $1 == "source" ]; then if [ $# -lt 1 ] || [ $1 == "source" ]; then
rm -rf onelab-source* rm -rf onelab-source*
mkdir onelab-source mkdir onelab-source
curl -O http://gmsh.info/src/gmsh-${GMSH}-source.tgz curl -O https://gmsh.info/src/gmsh-${GMSH}-source.tgz
curl -O http://getdp.info/src/getdp-${GETDP}-source.tgz curl -O https://getdp.info/src/getdp-${GETDP}-source.tgz
mv gmsh-${GMSH}-source.tgz /tmp mv gmsh-${GMSH}-source.tgz /tmp
mv getdp-${GETDP}-source.tgz /tmp mv getdp-${GETDP}-source.tgz /tmp
tar zxvf /tmp/gmsh-${GMSH}-source.tgz -C /tmp tar zxvf /tmp/gmsh-${GMSH}-source.tgz -C /tmp
...@@ -97,9 +97,9 @@ fi ...@@ -97,9 +97,9 @@ fi
if [ $# -lt 1 ] || [ $1 == "win64" ]; then if [ $# -lt 1 ] || [ $1 == "win64" ]; then
rm -rf onelab-Windows64* rm -rf onelab-Windows64*
mkdir onelab-Windows64 mkdir onelab-Windows64
curl -O http://gmsh.info/bin/Windows/gmsh-${GMSH}-Windows64.zip curl -O https://gmsh.info/bin/Windows/gmsh-${GMSH}-Windows64.zip
curl -O http://getdp.info/bin/Windows/getdp-${GETDP}-Windows64c.zip curl -O https://getdp.info/bin/Windows/getdp-${GETDP}-Windows64c.zip
curl -O http://onelab.info/optlab/bin/optlab-${OPTLAB}-Windows64.zip curl -O https://onelab.info/optlab/bin/optlab-${OPTLAB}-Windows64.zip
mv gmsh-${GMSH}-Windows64.zip /tmp mv gmsh-${GMSH}-Windows64.zip /tmp
mv getdp-${GETDP}-Windows64c.zip /tmp mv getdp-${GETDP}-Windows64c.zip /tmp
mv optlab-${OPTLAB}-Windows64.zip /tmp mv optlab-${OPTLAB}-Windows64.zip /tmp
...@@ -134,9 +134,9 @@ fi ...@@ -134,9 +134,9 @@ fi
if [ $# -lt 1 ] || [ $1 == "win32" ]; then if [ $# -lt 1 ] || [ $1 == "win32" ]; then
rm -rf onelab-Windows32* rm -rf onelab-Windows32*
mkdir onelab-Windows32 mkdir onelab-Windows32
curl -O http://gmsh.info/bin/Windows/gmsh-${GMSH}-Windows32.zip curl -O https://gmsh.info/bin/Windows/gmsh-${GMSH}-Windows32.zip
curl -O http://getdp.info/bin/Windows/getdp-${GETDP}-Windows32c.zip curl -O https://getdp.info/bin/Windows/getdp-${GETDP}-Windows32c.zip
curl -O http://onelab.info/optlab/bin/optlab-${OPTLAB}-Windows32.zip curl -O https://onelab.info/optlab/bin/optlab-${OPTLAB}-Windows32.zip
mv gmsh-${GMSH}-Windows32.zip /tmp mv gmsh-${GMSH}-Windows32.zip /tmp
mv getdp-${GETDP}-Windows32c.zip /tmp mv getdp-${GETDP}-Windows32c.zip /tmp
mv optlab-${OPTLAB}-Windows32.zip /tmp mv optlab-${OPTLAB}-Windows32.zip /tmp
...@@ -171,9 +171,9 @@ fi ...@@ -171,9 +171,9 @@ fi
if [ $# -lt 1 ] || [ $1 == "linux64" ]; then if [ $# -lt 1 ] || [ $1 == "linux64" ]; then
rm -rf onelab-Linux64* rm -rf onelab-Linux64*
mkdir onelab-Linux64 mkdir onelab-Linux64
curl -O http://gmsh.info/bin/Linux/gmsh-${GMSH}-Linux64.tgz curl -O https://gmsh.info/bin/Linux/gmsh-${GMSH}-Linux64.tgz
curl -O http://getdp.info/bin/Linux/getdp-${GETDP}-Linux64c.tgz curl -O https://getdp.info/bin/Linux/getdp-${GETDP}-Linux64c.tgz
curl -O http://onelab.info/optlab/bin/optlab-${OPTLAB}-Linux64.zip curl -O https://onelab.info/optlab/bin/optlab-${OPTLAB}-Linux64.zip
mv gmsh-${GMSH}-Linux64.tgz /tmp mv gmsh-${GMSH}-Linux64.tgz /tmp
mv getdp-${GETDP}-Linux64c.tgz /tmp mv getdp-${GETDP}-Linux64c.tgz /tmp
mv optlab-${OPTLAB}-Linux64.zip /tmp mv optlab-${OPTLAB}-Linux64.zip /tmp
...@@ -207,9 +207,9 @@ fi ...@@ -207,9 +207,9 @@ fi
if [ $# -lt 1 ] || [ $1 == "linux32" ]; then if [ $# -lt 1 ] || [ $1 == "linux32" ]; then
rm -rf onelab-Linux32* rm -rf onelab-Linux32*
mkdir onelab-Linux32 mkdir onelab-Linux32
curl -O http://gmsh.info/bin/Linux/gmsh-${GMSH}-Linux32.tgz curl -O https://gmsh.info/bin/Linux/gmsh-${GMSH}-Linux32.tgz
curl -O http://getdp.info/bin/Linux/getdp-${GETDP}-Linux32c.tgz curl -O https://getdp.info/bin/Linux/getdp-${GETDP}-Linux32c.tgz
curl -O http://onelab.info/optlab/bin/optlab-${OPTLAB}-Linux32.zip curl -O https://onelab.info/optlab/bin/optlab-${OPTLAB}-Linux32.zip
mv gmsh-${GMSH}-Linux32.tgz /tmp mv gmsh-${GMSH}-Linux32.tgz /tmp
mv getdp-${GETDP}-Linux32c.tgz /tmp mv getdp-${GETDP}-Linux32c.tgz /tmp
mv optlab-${OPTLAB}-Linux32.zip /tmp mv optlab-${OPTLAB}-Linux32.zip /tmp
...@@ -243,9 +243,9 @@ fi ...@@ -243,9 +243,9 @@ fi
if [ $# -lt 1 ] || [ $1 == "mac" ]; then if [ $# -lt 1 ] || [ $1 == "mac" ]; then
rm -rf onelab-MacOSX* rm -rf onelab-MacOSX*
mkdir onelab-MacOSX mkdir onelab-MacOSX
curl -O http://gmsh.info/bin/MacOSX/gmsh-${GMSH}-MacOSX.dmg curl -O https://gmsh.info/bin/MacOSX/gmsh-${GMSH}-MacOSX.dmg
curl -O http://getdp.info/bin/MacOSX/getdp-${GETDP}-MacOSXc.tgz curl -O https://getdp.info/bin/MacOSX/getdp-${GETDP}-MacOSXc.tgz
curl -O http://onelab.info/optlab/bin/optlab-${OPTLAB}-MacOSX.zip curl -O https://onelab.info/optlab/bin/optlab-${OPTLAB}-MacOSX.zip
mv gmsh-${GMSH}-MacOSX.dmg /tmp mv gmsh-${GMSH}-MacOSX.dmg /tmp
mv getdp-${GETDP}-MacOSXc.tgz /tmp mv getdp-${GETDP}-MacOSXc.tgz /tmp
mv optlab-${OPTLAB}-MacOSX.zip /tmp mv optlab-${OPTLAB}-MacOSX.zip /tmp
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment