Skip to content

Commit

Permalink
Update c-cpp.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
2blackbar authored Jan 2, 2024
1 parent 4bf86c3 commit 9d29735
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,34 +12,38 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v2

- name: Checkout code
uses: actions/checkout@v2
with:
submodules: 'recursive' # ensures submodules are checked out

- name: Setup Visual Studio Environment
uses: ilammy/msvc-dev-cmd@v1

- name: Install dependencies
run: |
choco install -y cmake
- name: Install Vulkan SDK
uses: humbletim/[email protected]
with:
version: 1.3.204.1
cache: true

- name: Configure
run: |
mkdir build
cd build
cmake -G "NMake Makefiles" ../src
- name: Build
run: |
cd build
nmake
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: windows-artifact
path: build/*.exe

1 comment on commit 9d29735

@TNTwise
Copy link

@TNTwise TNTwise commented on 9d29735 Jan 2, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

everything seems to work, but this may be a timing issue. I read that nihui does this so it is a true 2x, 4x, or 8x interpolation, instead of being off by three frames. I read that somewhere, think nmkd said it, cant find the specific comment tho.

Please sign in to comment.