Commit 97f97da0 authored by Jan Kiene's avatar Jan Kiene
Browse files

adddebug output in smoke test and only run this single test

parent 9720b553
Loading
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -37,10 +37,11 @@ stages:
  before_script:
    - if [ ! -d "$TESTV_DIR" ]; then mkdir -p $TESTV_DIR; fi
    - cp -r scripts/testv/* $TESTV_DIR/
    - ls -altr $TESTV_DIR
  

# build all components of the project, i.e. codec itself, the unittests, the prerenderer and the standalone version of the TD object renderer
build-all-linux-make:
.build-all-linux-make:
  extends: .test-job-linux
  rules:
    - if: $CI_PIPELINE_SOURCE == 'merge_request_event'
@@ -48,7 +49,7 @@ build-all-linux-make:
  script:
    - bash ci/build_all_linux.sh

build-codec-linux-cmake:
.build-codec-linux-cmake:
  extends: .test-job-linux
  rules:
    - if: $CI_PIPELINE_SOURCE == 'merge_request_event'
@@ -59,7 +60,7 @@ build-codec-linux-cmake:
    - cmake ..
    - make -j

build-codec-instrumented-linux:
.build-codec-instrumented-linux:
  extends: .test-job-linux
  rules:
    - if: $CI_PIPELINE_SOURCE == 'merge_request_event'
@@ -68,7 +69,7 @@ build-codec-instrumented-linux:
    - bash ci/build_codec_instrumented_linux.sh

# make sure that the codec builds with msan, asan and usan
build-codec-sanitizers-linux:
.build-codec-sanitizers-linux:
  extends: .test-job-linux
  rules:
    - if: $CI_PIPELINE_SOURCE == 'merge_request_event'
@@ -91,7 +92,7 @@ codec-smoke-test:


# compare bit exactness between target and source branch
self-test-on-merge-request:
.self-test-on-merge-request:
  extends: .test-job-linux
  stage: compare
  rules: