Commit 522595ba authored by Archit Tamarapu's avatar Archit Tamarapu
Browse files

modify cmake build commands for CI

parent 7e84a542
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -333,7 +333,7 @@ external-renderer-cmake-asan-pytest:
  stage: test
  script:
    - python3 ci/disable_ram_counting.py
    - cmake -B cmake-build -G "Unix Makefiles" -DCLANG=asan -DCOPY_EXECUTABLES_FROM_BUILD_DIR=true
    - cmake -B cmake-build -G "Unix Makefiles" -DCLANG=asan 
    - cmake --build cmake-build -- -j
    - python3 -m pytest -q -n auto -rA --junit-xml=report-junit.xml tests/renderer/test_renderer.py
    
@@ -356,7 +356,7 @@ external-renderer-cmake-msan-pytest:
  stage: test
  script:
    - python3 ci/disable_ram_counting.py
    - cmake -B cmake-build -G "Unix Makefiles" -DCLANG=msan  -DCOPY_EXECUTABLES_FROM_BUILD_DIR=true
    - cmake -B cmake-build -G "Unix Makefiles" -DCLANG=msan
    - cmake --build cmake-build -- -j
    - python3 -m pytest -q -n auto -rA --junit-xml=report-junit.xml tests/renderer/test_renderer.py