Merge branch 'test-user-name' into loadcase.yaml
This commit is contained in:
commit
6d68f14952
|
@ -108,7 +108,7 @@ Pytest_python:
|
|||
stage: python
|
||||
script:
|
||||
- cd $DAMASKROOT/python
|
||||
- pytest
|
||||
- pytest --basetemp=/tmp/${CI_PIPELINE_ID}/python
|
||||
except:
|
||||
- master
|
||||
- release
|
||||
|
@ -194,7 +194,7 @@ grid_mech_compile_Intel:
|
|||
- cp -r grid_mech_compile grid_mech_compile_Intel
|
||||
- grid_mech_compile_Intel/test.py
|
||||
- cd pytest
|
||||
- pytest -k 'compile and grid'
|
||||
- pytest -k 'compile and grid' --basetemp=/tmp/${CI_PIPELINE_ID}/compile_grid_Intel
|
||||
except:
|
||||
- master
|
||||
- release
|
||||
|
@ -206,7 +206,7 @@ Compile_FEM_Intel:
|
|||
- cp -r FEM_compile FEM_compile_Intel
|
||||
- FEM_compile_Intel/test.py
|
||||
- cd pytest
|
||||
- pytest -k 'compile and mesh'
|
||||
- pytest -k 'compile and mesh' --basetemp=/tmp/${CI_PIPELINE_ID}/compile_mesh_Intel
|
||||
except:
|
||||
- master
|
||||
- release
|
||||
|
@ -218,7 +218,7 @@ grid_mech_compile_GNU:
|
|||
- cp -r grid_mech_compile grid_mech_compile_GNU
|
||||
- grid_mech_compile_GNU/test.py
|
||||
- cd pytest
|
||||
- pytest -k 'compile and grid'
|
||||
- pytest -k 'compile and grid' --basetemp=/tmp/${CI_PIPELINE_ID}/compile_grid_GNU
|
||||
except:
|
||||
- master
|
||||
- release
|
||||
|
@ -230,7 +230,7 @@ Compile_FEM_GNU:
|
|||
- cp -r FEM_compile FEM_compile_GNU
|
||||
- FEM_compile_GNU/test.py
|
||||
- cd pytest
|
||||
- pytest -k 'compile and mesh'
|
||||
- pytest -k 'compile and mesh' --basetemp=/tmp/${CI_PIPELINE_ID}/compile_mesh_GNU
|
||||
except:
|
||||
- master
|
||||
- release
|
||||
|
@ -252,7 +252,7 @@ Pytest_grid:
|
|||
script:
|
||||
- module load $IntelCompiler $MPICH_Intel $PETSc_MPICH_Intel
|
||||
- cd pytest
|
||||
- pytest -m 'not compile'
|
||||
- pytest -m 'not compile' --basetemp=/tmp/${CI_PIPELINE_ID}/fortran
|
||||
except:
|
||||
- master
|
||||
- release
|
||||
|
|
|
@ -1,14 +1,24 @@
|
|||
---
|
||||
|
||||
step:
|
||||
- mech:
|
||||
dot_F: [1.0e-3,0,0, 0,x,0, 0,0,x]
|
||||
P: [ x,x,x, x,0,x, x,x,0]
|
||||
dot_F: [1.0e-3, 0, 0,
|
||||
0, x, 0,
|
||||
0, 0, x]
|
||||
P: [x, x, x,
|
||||
x, 0, x,
|
||||
x, x, 0]
|
||||
discretization:
|
||||
t: 10
|
||||
N: 40
|
||||
f_out: 4
|
||||
- mech:
|
||||
dot_F: [1.0e-3,0,0, 0,x,0, 0,0,x]
|
||||
P: [ x,x,x, x,0,x, x,x,0]
|
||||
dot_F: [1.0e-3, 0, 0,
|
||||
0, x, 0,
|
||||
0, 0, x]
|
||||
P: [x, x, x,
|
||||
x, 0, x,
|
||||
x, x, 0]
|
||||
discretization:
|
||||
t: 60
|
||||
N: 60
|
||||
|
|
Loading…
Reference in New Issue