Browse Source

Debug -> Release

ithewei 2 years ago
parent
commit
88ffe5f71b
1 changed files with 6 additions and 6 deletions
  1. 6 6
      .github/workflows/CI.yml

+ 6 - 6
.github/workflows/CI.yml

@@ -37,17 +37,17 @@ jobs:
         run: |
           mkdir cmake-build-win64
           cd cmake-build-win64
-          cmake .. -G "Visual Studio 17 2022" -A x64 -DCMAKE_BUILD_TYPE=Debug
-          cmake --build . --config Debug
+          cmake .. -G "Visual Studio 17 2022" -A x64 -DCMAKE_BUILD_TYPE=Release
+          cmake --build . --config Release
           cd ..
 
       - name: test
         run: |
           cd cmake-build-win64
-          start bin/Debug/http_server_test
-          bin/Debug/http_client_test
-          bin/Debug/curl -v http://127.0.0.1:8080/ping
-          bin/Debug/wrk -c 100 -t 2 -d 10s http://127.0.0.1:8080/ping
+          start bin/Release/http_server_test
+          bin/Release/http_client_test
+          bin/Release/curl -v http://127.0.0.1:8080/ping
+          bin/Release/wrk -c 100 -t 2 -d 10s http://127.0.0.1:8080/ping
 
   build-apple:
     name: build-apple