218 lines
7.6 KiB
YAML
218 lines
7.6 KiB
YAML
---
|
|
stages:
|
|
- prepare
|
|
- python
|
|
- compile
|
|
- fortran
|
|
- performance
|
|
- deploy
|
|
- finalize
|
|
|
|
|
|
###################################################################################################
|
|
default:
|
|
before_script:
|
|
- ${LOCAL_HOME}/bin/queue ${CI_JOB_ID}
|
|
- source env/DAMASK.sh
|
|
- export PATH=${TESTROOT}/bin:${PATH}
|
|
- echo Job start:" $(date)"
|
|
after_script:
|
|
- echo Job end:" $(date)"
|
|
|
|
|
|
###################################################################################################
|
|
variables:
|
|
# ===============================================================================================
|
|
# GitLab Settings
|
|
# ===============================================================================================
|
|
GIT_SUBMODULE_STRATEGY: normal
|
|
|
|
# ===============================================================================================
|
|
# Shortcut names
|
|
# ===============================================================================================
|
|
TESTROOT: "$LOCAL_HOME/GitLabCI_Pipeline_$CI_PIPELINE_ID"
|
|
|
|
# ===============================================================================================
|
|
# Names of module files to load
|
|
# ===============================================================================================
|
|
# ++++++++++++ Compiler +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
COMPILER_INTEL: "Compiler/Intel/19.1.2 Libraries/IMKL/2020"
|
|
COMPILER_GNU: "Compiler/GNU/10"
|
|
# ++++++++++++ MPI ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
MPI_INTEL: "MPI/Intel/19.1.2/IntelMPI/2019"
|
|
MPI_GNU: "MPI/GNU/10/OpenMPI/4.1.1"
|
|
# ++++++++++++ PETSc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
PETSC_INTEL: "Libraries/PETSc/3.16.1/Intel-19.1.2-IntelMPI-2019"
|
|
PETSC_GNU: "Libraries/PETSc/3.16.1/GNU-10-OpenMPI-4.1.1"
|
|
# ++++++++++++ MSC Marc +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
MSC: "FEM/MSC/2021.3.1"
|
|
IntelMarc: "Compiler/Intel/19.1.2 Libraries/IMKL/2020"
|
|
HDF5Marc: "HDF5/1.12.1/Intel-19.1.2"
|
|
|
|
|
|
###################################################################################################
|
|
create_testroot:
|
|
stage: prepare
|
|
before_script:
|
|
- ${LOCAL_HOME}/bin/queue ${CI_JOB_ID}
|
|
- echo Job start:" $(date)"
|
|
script:
|
|
- mkdir -p ${TESTROOT}
|
|
|
|
|
|
###################################################################################################
|
|
pytest:
|
|
stage: python
|
|
script:
|
|
- cd python
|
|
- pytest --basetemp ${TESTROOT}/python -v --cov --cov-report=term
|
|
- coverage report --fail-under=90
|
|
|
|
mypy:
|
|
stage: python
|
|
script:
|
|
- cd python
|
|
- mypy damask
|
|
|
|
|
|
###################################################################################################
|
|
test_grid_Intel:
|
|
stage: compile
|
|
script:
|
|
- module load ${COMPILER_INTEL} ${MPI_INTEL} ${PETSC_INTEL}
|
|
- cd PRIVATE/testing/pytest
|
|
- pytest -k 'compile and grid' --basetemp ${TESTROOT}/compile_grid_Intel
|
|
|
|
test_mesh_Intel:
|
|
stage: compile
|
|
script:
|
|
- module load ${COMPILER_INTEL} ${MPI_INTEL} ${PETSC_INTEL}
|
|
- cd PRIVATE/testing/pytest
|
|
- pytest -k 'compile and mesh' --basetemp ${TESTROOT}/compile_mesh_Intel
|
|
|
|
test_grid_GNU:
|
|
stage: compile
|
|
script:
|
|
- module load ${COMPILER_GNU} ${MPI_GNU} ${PETSC_GNU}
|
|
- cd PRIVATE/testing/pytest
|
|
- pytest -k 'compile and grid' --basetemp ${TESTROOT}/compile_grid_GNU
|
|
|
|
test_mesh_GNU:
|
|
stage: compile
|
|
script:
|
|
- module load ${COMPILER_GNU} ${MPI_GNU} ${PETSC_GNU}
|
|
- cd PRIVATE/testing/pytest
|
|
- pytest -k 'compile and mesh' --basetemp ${TESTROOT}/compile_mesh_GNU
|
|
|
|
test_Marc:
|
|
stage: compile
|
|
script:
|
|
- module load $IntelMarc $HDF5Marc $MSC
|
|
- cd PRIVATE/testing/pytest
|
|
- pytest -k 'compile and Marc' --basetemp ${TESTROOT}/compile_Marc
|
|
|
|
|
|
setup_grid:
|
|
stage: compile
|
|
script:
|
|
- module load ${COMPILER_INTEL} ${MPI_INTEL} ${PETSC_INTEL}
|
|
- cd $(mktemp -d)
|
|
- cmake -DDAMASK_SOLVER=GRID -DCMAKE_INSTALL_PREFIX=${TESTROOT} ${CI_PROJECT_DIR}
|
|
- make -j2 all install
|
|
|
|
setup_mesh:
|
|
stage: compile
|
|
script:
|
|
- module load ${COMPILER_INTEL} ${MPI_INTEL} ${PETSC_INTEL}
|
|
- cd $(mktemp -d)
|
|
- cmake -DDAMASK_SOLVER=MESH -DCMAKE_INSTALL_PREFIX=${TESTROOT} ${CI_PROJECT_DIR}
|
|
- make -j2 all install
|
|
|
|
compile_Marc:
|
|
stage: compile
|
|
script:
|
|
- module load $IntelMarc $HDF5Marc $MSC
|
|
- cd $(mktemp -d)
|
|
- cp ${CI_PROJECT_DIR}/examples/Marc/* .
|
|
- python3 -c "import damask;damask.solver.Marc().submit_job('r-value','texture',True,'h')"
|
|
- mkdir ${TESTROOT}/src
|
|
- mv ${CI_PROJECT_DIR}/src/DAMASK_Marc.marc ${TESTROOT}/src
|
|
|
|
|
|
###################################################################################################
|
|
open-source:
|
|
stage: fortran
|
|
script:
|
|
- module load ${COMPILER_INTEL} ${MPI_INTEL} ${PETSC_INTEL}
|
|
- cd PRIVATE/testing/pytest
|
|
- pytest -k 'not compile and not Marc' --basetemp ${TESTROOT}/open-source -v
|
|
|
|
Marc:
|
|
stage: fortran
|
|
script:
|
|
- cd PRIVATE/testing/pytest
|
|
- pytest -k 'not compile and Marc' --damask-root=${TESTROOT} --basetemp ${TESTROOT}/Marc -v
|
|
|
|
# Needs closer look
|
|
# Phenopowerlaw_singleSlip:
|
|
# stage: fortran
|
|
# script: Phenopowerlaw_singleSlip/test.py
|
|
|
|
|
|
###################################################################################################
|
|
grid_runtime:
|
|
stage: performance
|
|
script:
|
|
- module load ${COMPILER_INTEL} ${MPI_INTEL} ${PETSC_INTEL}
|
|
- cd $(mktemp -d)
|
|
- cmake -DOPTIMIZATION=AGGRESSIVE -DDAMASK_SOLVER=GRID -DCMAKE_INSTALL_PREFIX=./ ${CI_PROJECT_DIR}
|
|
- make -j2 all install
|
|
- export PATH=${PWD}/bin:${PATH}
|
|
- cd $(mktemp -d)
|
|
- git clone -q git@git.damask.mpie.de:damask/performance.git .
|
|
- >
|
|
${CI_PROJECT_DIR}/PRIVATE/testing/runtime.py
|
|
--input_dir ${CI_PROJECT_DIR}/examples/grid
|
|
--output_dir ./
|
|
--tag ${CI_COMMIT_SHA}
|
|
- if [ ${CI_COMMIT_BRANCH} == development ]; then git commit -am ${CI_PIPELINE_ID}_${CI_COMMIT_SHA}; git push; fi
|
|
before_script:
|
|
- ${LOCAL_HOME}/bin/queue ${CI_JOB_ID} --blocking
|
|
- source env/DAMASK.sh
|
|
- echo Job start:" $(date)"
|
|
|
|
|
|
###################################################################################################
|
|
source_distribution:
|
|
stage: deploy
|
|
script:
|
|
- cd $(mktemp -d)
|
|
- ${CI_PROJECT_DIR}/PRIVATE/releasing/tar.xz/create.sh ${CI_PROJECT_DIR} ${CI_COMMIT_SHA}
|
|
|
|
|
|
###################################################################################################
|
|
update_revision:
|
|
stage: finalize
|
|
before_script:
|
|
- ${LOCAL_HOME}/bin/queue ${CI_JOB_ID}
|
|
- echo Job start:" $(date)"
|
|
script:
|
|
- cd $(mktemp -d)
|
|
- git clone -q git@git.damask.mpie.de:damask/DAMASK.git .
|
|
- git checkout ${CI_COMMIT_SHA}
|
|
- export VERSION=$(git describe)
|
|
- echo ${VERSION} > python/damask/VERSION
|
|
- git add python/damask/VERSION
|
|
- git commit -m "[skip ci] updated version information after successful test of $VERSION"
|
|
- export UPDATEDREV=$(git describe) # tested state + 1 commit
|
|
- git checkout master
|
|
- git pull
|
|
- git merge $UPDATEDREV -s recursive -X ours # conflicts occur only for inconsistent state
|
|
- git push
|
|
- git checkout development
|
|
- git pull
|
|
- git merge master -s recursive -X ours -m "[skip ci] Merge branch 'master' into development" # only possible conflict is in VERSION file
|
|
- git push origin development # development is unchanged (as master is based on it) but has updated VERSION file
|
|
only:
|
|
- development
|