From 52f5d4971a86a0660ad5b2eec7344332f4df36e2 Mon Sep 17 00:00:00 2001 From: Oliver Benz Date: Sat, 31 Jan 2026 16:26:28 +0100 Subject: [PATCH 1/2] Git: Use https link for cmake submodule. --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index 06c3765..69503ee 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "cmake"] path = lib/cmake - url = git@github.com:OliverBenz/cmake_files.git + url = https://github.com/OliverBenz/cmake_files.git From 386c7cc19cf93bbd4a1d7a4035bf65da686817ae Mon Sep 17 00:00:00 2001 From: Oliver Benz Date: Sat, 31 Jan 2026 16:31:03 +0100 Subject: [PATCH 2/2] Github: Fix workflow. --- .github/workflows/cmake.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 9353af1..ad7bddf 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -29,14 +29,14 @@ jobs: - name: Build working-directory: ${{runner.workspace}}/build shell: bash - run: cmake --build . --config $BUILD_TYPE + run: cmake --build . --config $BUILD_TYPE -j - name: Run Tests - working-directory: ${{runner.workspace}}/build/out/bin + working-directory: ${{runner.workspace}}/build/out/bin/x64/Release shell: bash run: ./Logger.GTest - name: Run Examples - working-directory: ${{runner.workspace}}/build/out/bin + working-directory: ${{runner.workspace}}/build/out/bin/x64/Release shell: bash run: ./Example.Standard \ No newline at end of file