Commit 051013d9 authored by sagnowski's avatar sagnowski
Browse files

CI: Do not run scripts for removing RAM_COUNTING_TOOL define

This define no longer exists since the update of the WMC tool.
parent b9fbb11c
Loading
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -347,7 +347,6 @@ codec-msan:
  needs: ["build-codec-sanitizers-linux"]
  script:
    - *print-common-info
    - python3 ci/disable_ram_counting.py
    - make clean
    - make -j CLANG=1
    - python3 scripts/self_test.py --create | tee test_output.txt
@@ -370,7 +369,6 @@ codec-asan:
  needs: ["build-codec-sanitizers-linux"]
  script:
    - *print-common-info
    - python3 ci/disable_ram_counting.py
    - make clean
    - make -j CLANG=2
    - python3 scripts/self_test.py --create | tee test_output.txt
@@ -413,7 +411,6 @@ renderer-asan:
  needs: ["build-codec-linux-cmake"]
  stage: test
  script:
    - python3 ci/comment_defines.py -d RAM_COUNTING_TOOL -f lib_com/options.h
    - cmake -B cmake-build -G "Unix Makefiles" -DCLANG=asan -DCOPY_EXECUTABLES_FROM_BUILD_DIR=true
    - cmake --build cmake-build -- -j
    - python3 -m pytest -q -n auto -rA --junit-xml=report-junit.xml tests/renderer/test_renderer.py
@@ -437,7 +434,6 @@ renderer-msan:
  needs: ["build-codec-linux-cmake"]
  stage: test
  script:
    - python3 ci/comment_defines.py -d RAM_COUNTING_TOOL -f lib_com/options.h
    - cmake -B cmake-build -G "Unix Makefiles" -DCLANG=msan  -DCOPY_EXECUTABLES_FROM_BUILD_DIR=true
    - cmake --build cmake-build -- -j
    - python3 -m pytest -q -n auto -rA --junit-xml=report-junit.xml tests/renderer/test_renderer.py