Skip to content
Snippets Groups Projects

Draft: Check pipeline [DEBUG ONLY]

Closed Ammar Nejati requested to merge checkPipeline into main
+ 4
4
@@ -12,7 +12,7 @@ mac10_15:
- make
- ctest --output-on-failure
- cpack .
- make install
- if [ "$CI_COMMIT_REF_NAME" == "main" ]; then make install; fi
artifacts:
paths:
- build/*zip
@@ -29,7 +29,7 @@ windows:
- Windows
stage: build
script:
- New-Item -ItemType "directory" -Confirm:$false -Force:$true -Name "build"
- mkdir -Force "build"
- cd build
- cmake -G "Visual Studio 17 2022" -A x64 -T host=x64 -DCERF_CPP=ON -DLIB_MAN=OFF -DCMAKE_INSTALL_PREFIX=C:\opt\x64 -B. ..
- cmake --build . --config Release
@@ -37,8 +37,8 @@ windows:
- dir
- dir Release
- ctest -C Release --output-on-failure
- cmake --install .
- cpack .
- if ("$CI_COMMIT_REF_NAME" -eq "main") { cmake --install }
artifacts:
paths:
- build/*zip
@@ -59,7 +59,7 @@ native_Debian_clang:
- cmake -DWERROR=ON ..
- make -j6
- ctest -j6 --output-on-failure
- make install
- if [ "$CI_COMMIT_REF_NAME" == "main" ]; then make install; fi
# ## Dockerized:
#
Loading