.gitlab-ci.yml 456 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 21 22 23 24
    ./ci_scripts/run_tests.sh

run_thread_sanitizer:
  stage: sanitizer
  script:
    ./ci_scripts/run_thread_sanitizer.sh
25 26 27 28 29

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