From 195d8ad69b16a602422b9dd28a78575334de94be Mon Sep 17 00:00:00 2001 From: Tobias Frisch <tfrisch@uni-koblenz.de> Date: Sun, 19 Mar 2023 23:49:26 +0100 Subject: [PATCH] Update workflows to release profile Signed-off-by: Tobias Frisch <tfrisch@uni-koblenz.de> --- .github/workflows/linux.yml | 6 ++---- .github/workflows/windows.yml | 7 +++---- README.md | 3 +++ 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 5585f795..18562323 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -29,7 +29,5 @@ jobs: - name: Build framework run: | - mkdir build - cd build - cmake .. - make -j $(nproc) + cmake -DCMAKE_BUILD_TYPE=Release -S . -B build + cmake --build build diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 9333396c..104844c3 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -21,7 +21,6 @@ jobs: vulkan-use-cache: true - name: Build framework - uses: ashutoshvarma/action-cmake-build@v1 - with: - build-dir: ${{ runner.workspace }}/build - run-test: false + run: | + cmake -S . -B build + cmake --build build --config Release diff --git a/README.md b/README.md index f73ca45d..493a9ad6 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,9 @@ # VkCV Framework A Vulkan framework for computer visualistics simplifying building applications +[](https://github.com/TheJackiMonster/vkcv-framework/actions/workflows/linux.yml) +[](https://github.com/TheJackiMonster/vkcv-framework/actions/workflows/windows.yml) +  ## Repository -- GitLab