Skip to content
Snippets Groups Projects
Commit 16fccba8 authored by Ian Bell's avatar Ian Bell
Browse files

Correct Release builds for clang-cl

parent 0b711e81
No related branches found
No related tags found
No related merge requests found
...@@ -18,10 +18,10 @@ jobs: ...@@ -18,10 +18,10 @@ jobs:
- name: mkdir - name: mkdir
run: mkdir build && cd build run: mkdir build && cd build
- name: cmake config - name: cmake config
run: cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DTEQP_SNIPPETS=ON -DTEQP_TEQPC=ON -T ClangCL run: cd build && cmake .. -DTEQP_SNIPPETS=ON -DTEQP_TEQPC=ON -T ClangCL
- name: build all Catch tests - name: build all Catch tests
run: cmake --build build --target catch_tests run: cmake --build build --target catch_tests --config Release
- name: build teqpc shared library - name: build teqpc shared library
run: cmake --build build --target teqpc run: cmake --build build --target teqpc --config Release
- name: run all the compiled Catch tests - name: run all the compiled Catch tests
run: cd build && ctest --verbose run: cd build && ctest --verbose
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment