Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: test
run-name: ${{ github.actor }}
on: [pull_request]
jobs:
test-compilation:
runs-on: windows-latest
steps:
- name: install cmake
uses: ssrobins/install-cmake@v1
with:
version: 4.1.1

- name: Setup python
uses: actions/setup-python@v6.2.0

- name: Setup Vulkan SDK
uses: humbletim/install-vulkan-sdk@30ba978f977e81b72d091fc8888feb1fb26f9aff

- name: Checkout PR
uses: actions/checkout@v6.0.2

- name: configure repo
working-directory: ${{github.workspace}}/scripts
run: py ${{github.workspace}}/scripts/clang_withtests.py

- name: build repo
run: cmake --build ${{github.workspace}}/build --config Debug
1 change: 0 additions & 1 deletion src/rtERenderer/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@ target_sources(${PROJECT_NAME} PRIVATE
rtERenderer.c)

add_subdirectory(creation)
add_subdirectory(debug)
add_subdirectory(support)
4 changes: 1 addition & 3 deletions src/rtERenderer/creation/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
target_sources(${PROJECT_NAME} PRIVATE
rtER_VK_objectCreation.c
rtER_VK_infoCreation.c
rtER_VK_readShaderSource.c)
rtER_VK_objectCreation.c)
9 changes: 0 additions & 9 deletions src/rtERenderer/creation/rtER_VK_infoCreation.c

This file was deleted.

22 changes: 0 additions & 22 deletions src/rtERenderer/creation/rtER_VK_infoCreation.h

This file was deleted.

Loading
Loading