BUG: textscan can error out when the outlog is too long, limit to 100… #184
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ubuntu Basic | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
ISSM_DIR: ${{ github.workspace }} | |
jobs: | |
build-test: | |
uses: ./.github/workflows/common-workflow.yml | |
with: | |
os: ubuntu-latest | |
build_type: basic-matlab | |
interface: matlab | |
build_command: | | |
source $ISSM_DIR/etc/environment.sh | |
autoreconf -ivf | |
./configure --prefix=${ISSM_DIR} \ | |
--disable-static \ | |
--enable-development \ | |
--enable-debugging \ | |
--with-numthreads=4 \ | |
--with-matlab-dir=$MATLAB_ROOT \ | |
--with-fortran-lib="-L/usr/lib/x86_64-linux-gnu -lgfortran" \ | |
--with-mpi-include="${ISSM_DIR}/externalpackages/petsc/install/include" \ | |
--with-mpi-libflags="-L${ISSM_DIR}/externalpackages/petsc/install/lib -lmpi -lmpicxx -lmpifort" \ | |
--with-petsc-dir="${ISSM_DIR}/externalpackages/petsc/install" \ | |
--with-blas-lapack-dir="${ISSM_DIR}/externalpackages/petsc/install" \ | |
--with-metis-dir="${ISSM_DIR}/externalpackages/petsc/install" \ | |
--with-parmetis-dir="${ISSM_DIR}/externalpackages/petsc/install" \ | |
--with-scalapack-dir="${ISSM_DIR}/externalpackages/petsc/install" \ | |
--with-mumps-dir="${ISSM_DIR}/externalpackages/petsc/install" \ | |
--with-triangle-dir="${ISSM_DIR}/externalpackages/triangle/install" \ | |
--with-semic-dir="${ISSM_DIR}/externalpackages/semic/install" \ | |
--with-m1qn3-dir="${ISSM_DIR}/externalpackages/m1qn3/install" | |
ext_install_command: | | |
cd $ISSM_DIR/externalpackages/triangle && ./install-linux.sh | |
cd $ISSM_DIR/externalpackages/m1qn3 && ./install-linux.sh | |
cd $ISSM_DIR/externalpackages/petsc && ./install-3.22-linux.sh | |
cd $ISSM_DIR/externalpackages/semic && ./install.sh | |
test_cases: '["101:399", "401:899"]' | |
additional_options: " " | |
secrets: inherit | |
name: build-test-ubuntu-basic |