From 16fccba8594b663ea33ca2f9c31f21feefee7509 Mon Sep 17 00:00:00 2001
From: Ian Bell <ian.bell@nist.gov>
Date: Fri, 17 Jun 2022 22:05:51 -0400
Subject: [PATCH] Correct Release builds for clang-cl

---
 .github/workflows/build_clangcl.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/build_clangcl.yml b/.github/workflows/build_clangcl.yml
index 9d16b7a..59ebce4 100644
--- a/.github/workflows/build_clangcl.yml
+++ b/.github/workflows/build_clangcl.yml
@@ -18,10 +18,10 @@ jobs:
       - name: mkdir
         run: mkdir build && cd build
       - 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
-        run: cmake --build build --target catch_tests
+        run: cmake --build build --target catch_tests --config Release
       - 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
         run: cd build && ctest --verbose
\ No newline at end of file
-- 
GitLab