Skip to content
Snippets Groups Projects
Commit 199a8da6 authored by Moritz Hanke's avatar Moritz Hanke Committed by Sergey Kosukhin
Browse files

adds gitlab CI job for disabled Fortran bindings

parent 7f53c95a
No related branches found
No related tags found
No related merge requests found
......@@ -816,6 +816,45 @@ test_levante_gcc_disable_netcdf:
- "**/test-suite.log"
expire_in: 30min
test_levante_gcc_disable_fortran:
stage: test
needs:
- build_externals_levante_gcc
- setup_python_levante_gcc
extends:
- .init_build_levante_gcc
- .init_externals
- .init_python
- .check_warnings
variables:
CFLAGS: -O2 -g -Wall
FCFLAGS: -O2 -g -Wall
script:
- test -f ./configure || ./autogen.sh
- >
./configure
--disable-mpi-checks
--disable-silent-rules
--enable-concurrent-mpi-tests
--disable-fortran-bindings
--with-external-mtime
--with-fyaml-root=/sw/spack-levante/libfyaml-0.7.12-fvbhgo
--with-mtime-root=$EXTERNALS_DIR/mtime
--with-netcdf-root=/sw/spack-levante/netcdf-c-4.8.1-6qheqr
--with-yaxt-root=$EXTERNALS_DIR/yaxt
MKL_CFLAGS="`pkg-config --cflags mkl-static-lp64-seq`"
MKL_CLIBS="`pkg-config --libs mkl-static-lp64-seq`"
- make --output-sync=target check AM_COLOR_TESTS=no TESTS= 2> >(tee $CHECK_WARNINGS_FILE)
- make --silent --keep-going check
- *check_warning_script
- *check_untracked
artifacts:
when: on_failure
paths:
- config.log
- "**/test-suite.log"
expire_in: 30min
test_levante_gcc_openmp:
stage: test
needs:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment