diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 37109ff..c5d9211 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -28,16 +28,16 @@ jobs: ln -s /opt/vcpkg/vcpkg /usr/local/bin/vcpkg - name: Clone project repository run: | - git clone https://github.com/leventkaragol/libcpp-http-client.git /root/libcpp-http-client + git clone https://github.com/leventkaragol/libcpp-crypto.git /root/libcpp-crypto - name: Run cmake with vcpkg toolchain run: | - cd /root/libcpp-http-client + cd /root/libcpp-crypto cmake -B build -S . -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=/opt/vcpkg/scripts/buildsystems/vcpkg.cmake - name: Build the project run: | - cd /root/libcpp-http-client + cd /root/libcpp-crypto cmake --build build --config Release - name: Run tests run: | - cd /root/libcpp-http-client + cd /root/libcpp-crypto ./build/test/test diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index f211596..d916de5 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -58,4 +58,4 @@ jobs: - name: Run tests run: | - & "D:\a\libcpp-http-client\libcpp-http-client\build\test\Release\test.exe" + & "D:\a\libcpp-crypto\libcpp-crypto\build\test\Release\test.exe"