.gitlab-ci.yml 543 Bytes
Newer Older
1
image: "flofritz/ci-benchmark-hpx-embb"
FritzFlorian committed
2 3 4 5

stages:
  - build
  - test
6
  - sanitizer
FritzFlorian committed
7 8 9 10

build_cmake:
  stage: build
  script:
11
    ./ci_scripts/build_cmake_release.sh
FritzFlorian committed
12 13
  artifacts:
    paths:
14
      - release/
FritzFlorian committed
15 16 17 18

run_tests:
  stage: test
  script:
19 20
    ./ci_scripts/run_tests.sh

21 22 23 24 25
# Disable until we can get a clang with the tsan patch for fibers on the CI server
#run_thread_sanitizer:
#  stage: sanitizer
#  script:
#    ./ci_scripts/run_thread_sanitizer.sh
26 27 28 29 30

run_address_sanitizer:
  stage: sanitizer
  script:
    ./ci_scripts/run_address_sanitizer.sh