From 73449e7bfd5366f89f6a97d065a2ad4ea216adf8 Mon Sep 17 00:00:00 2001 From: uNetworkingAB <110806833+uNetworkingAB@users.noreply.github.com> Date: Wed, 2 Nov 2022 13:45:36 +0100 Subject: [PATCH] Update cpp.yml --- .github/workflows/cpp.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/cpp.yml b/.github/workflows/cpp.yml index 9878eef..2c783c7 100644 --- a/.github/workflows/cpp.yml +++ b/.github/workflows/cpp.yml @@ -14,7 +14,7 @@ jobs: - name: Install libuv run: vcpkg install libuv:x64-windows - uses: ilammy/msvc-dev-cmd@v1 - - name: Set env + - name: Build examples run: | cd uWebSockets cp C:\vcpkg\installed\x64-windows\bin\uv.dll uv.dll @@ -26,15 +26,14 @@ jobs: $Env:EXEC_SUFFIX='.exe' $Env:WITH_ZLIB='0' $Env:WITH_LTO='0' - - name: Run unit tests - run: make -C tests - - name: Build examples - run: | make -C uSockets nmake -f shim ls + - name: Run unit tests + run: make -C uWebSockets/tests - name: Run smoke test run: | + cd uWebSockets Start-Process -NoNewWindow .\Crc32 sleep 1 deno run --allow-net tests\smoke.mjs