Commit d026e91c authored by Jan Kiene's avatar Jan Kiene
Browse files

remove debugging output and activate all jobs again

parent ebe4392c
Loading
Loading
Loading
Loading
Loading
+5 −6
Original line number Diff line number Diff line
@@ -37,11 +37,10 @@ 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'
@@ -49,7 +48,7 @@ stages:
  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'
@@ -60,7 +59,7 @@ stages:
    - cmake ..
    - make -j

.build-codec-instrumented-linux:
build-codec-instrumented-linux:
  extends: .test-job-linux
  rules:
    - if: $CI_PIPELINE_SOURCE == 'merge_request_event'
@@ -69,7 +68,7 @@ stages:
    - 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'
@@ -92,7 +91,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: