Commit 40e572ce authored by sagnowski's avatar sagnowski
Browse files

Fix ext renderer tests that build with CMake

parent f3c759b0
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -243,7 +243,7 @@ external-renderer-cmake-asan-pytest:
  stage: test
  script:
    - python3 ci/disable_ram_counting.py
    - cmake -B cmake-build -G "Unix Makefiles" -DCLANG=asan
    - cmake -B cmake-build -G "Unix Makefiles" -DCLANG=asan -DCOPY_EXECUTABLES_TO_ROOT=true
    - cmake --build cmake-build -- -j
    - python3 -m pytest scripts/tests/test_renderer.py --capture=no --tb=no -n auto

@@ -256,7 +256,7 @@ external-renderer-cmake-msan-pytest:
  stage: test
  script:
    - python3 ci/disable_ram_counting.py
    - cmake -B cmake-build -G "Unix Makefiles" -DCLANG=msan
    - cmake -B cmake-build -G "Unix Makefiles" -DCLANG=msan  -DCOPY_EXECUTABLES_TO_ROOT=true
    - cmake --build cmake-build -- -j
    - python3 -m pytest scripts/tests/test_renderer.py --capture=no --tb=no -n auto