File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77 env :
88 P4EST_ROOT_DIR : " /opt/p4est/2.8.5/"
99 JULIA_PETSC_LIBRARY : " /opt/petsc/3.23.0/lib/libpetsc"
10+ GMSHROOT : " /opt/gmsh-4.13-1-Linux64-sdk"
1011 strategy :
1112 fail-fast : false
1213 matrix :
2122 run : |
2223 sudo apt-get update
2324 sudo apt-get install -y wget gfortran g++ openmpi-bin libopenmpi-dev
25+ - name : Install gmsh-sdk
26+ run : |
27+ # Install gmsh-sdk from sources
28+ CURR_DIR=$(pwd)
29+ PACKAGE=gmsh
30+ VERSION=4.13-1
31+ INSTALL_ROOT=/opt
32+ TAR_FILE=$PACKAGE-$VERSION-Linux64-sdk.tgz
33+ URL="https://gmsh.info/bin/Linux"
34+ ROOT_DIR=/tmp
35+ wget -q $URL/$TAR_FILE -O $ROOT_DIR/$TAR_FILE
36+ tar xzf $ROOT_DIR/$TAR_FILE -C $INSTALL_ROOT --strip-components=1
37+ rm -rf $ROOT_DIR/$TAR_FILE
38+ cd $CURR_DIR
2439 - name : Install p4est
2540 run : |
2641 # Install p4est 2.2 from sources
You can’t perform that action at this time.
0 commit comments