Commit 2e7fedde authored by Johannes Blaschke's avatar Johannes Blaschke
Browse files

Config CI

parent e014394d
Loading
Loading
Loading
Loading
Loading

.gitlab-ci.yml

0 → 100644
+28 −0
Original line number Diff line number Diff line
# cache:
#   key: "$CI_BUILD_REF_NAME"
#   untracked: true
#   paths:
#     - build/

# image: particle-lib

variables:
  CC: "gcc"
  CTEST_OUTPUT_ON_FAILURE: "1"
  CXX: "g++"
  ENABLE_MPI: "1"
  ENABLE_OMP: "0"

.test: &test_template
  script:
    - mkdir build
    - cd build
    - cmake ..
    - make -j

test-basic:
  variables:
    CC: "mpicc"
    CXX: "mpic++"
    ENABLE_MPI: "1"
  <<: *test_template