Skip to content

Commit 4b154d2

Browse files
authored
[merge] Merge pull request #554 from inexorgame/hanni/maintenance
Maintenance
2 parents ac864f5 + 27133e6 commit 4b154d2

File tree

11 files changed

+11
-259
lines changed

11 files changed

+11
-259
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
rm -rf ${{ env.INEXOR_VULKAN_SDK_PATH }}/${{ env.INEXOR_VULKAN_VERSION }}/x86_64/lib/cmake/volk/
105105
106106
- name: Checkout
107-
uses: actions/checkout@v3
107+
uses: actions/checkout@v4
108108

109109
- name: Configure CMake
110110
shell: bash
@@ -137,7 +137,7 @@ jobs:
137137
tar -zcvf "../build_linux_${{ matrix.config.build_type }}_${{ matrix.config.compiler }}.tar.xz" *
138138
139139
- name: Upload Build Artifacts
140-
uses: actions/upload-artifact@v3
140+
uses: actions/upload-artifact@v4
141141
with:
142142
name: build_linux_${{ matrix.config.build_type }}_${{ matrix.config.compiler }}.tar.xz
143143
path: build_linux_${{ matrix.config.build_type }}_${{ matrix.config.compiler }}.tar.xz
@@ -155,7 +155,7 @@ jobs:
155155
tar -zcvf "../nightly_linux_${{ matrix.config.build_type }}_${{ matrix.config.compiler }}.tar.xz" *
156156
157157
- name: Upload Nightly Artifacts
158-
uses: actions/upload-artifact@v3
158+
uses: actions/upload-artifact@v4
159159
with:
160160
name: nightly_linux_${{ matrix.config.build_type }}_${{ matrix.config.compiler }}.tar.xz
161161
path: nightly_linux_${{ matrix.config.build_type }}_${{ matrix.config.compiler }}.tar.xz
@@ -208,7 +208,7 @@ jobs:
208208
pip3 install wheel setuptools
209209
210210
- name: Checkout
211-
uses: actions/checkout@v3
211+
uses: actions/checkout@v4
212212

213213
- name: Configure LLVM
214214
if: matrix.config.compiler == 'clang'
@@ -251,7 +251,7 @@ jobs:
251251
7z a -tzip "build_windows_${{ matrix.config.build_type }}_${{ matrix.config.compiler }}" ./build/*
252252
253253
- name: Upload Build Artifacts
254-
uses: actions/upload-artifact@v3
254+
uses: actions/upload-artifact@v4
255255
with:
256256
name: build_windows_${{ matrix.config.build_type }}_${{ matrix.config.compiler }}
257257
path: build_windows_${{ matrix.config.build_type }}_${{ matrix.config.compiler }}.zip
@@ -268,7 +268,7 @@ jobs:
268268
7z a -tzip "nightly_windows_${{ matrix.config.build_type }}_${{ matrix.config.compiler }}" ./artifacts/*
269269
270270
- name: Upload Nightly Artifacts
271-
uses: actions/upload-artifact@v3
271+
uses: actions/upload-artifact@v4
272272
with:
273273
name: nightly_windows_${{ matrix.config.build_type }}_${{ matrix.config.compiler }}
274274
path: nightly_windows_${{ matrix.config.build_type }}_${{ matrix.config.compiler }}.zip

.github/workflows/build_documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
tar cfz documentation.tar.xz build/html/*
5050
5151
- name: Upload artifacts
52-
uses: actions/upload-artifact@v3
52+
uses: actions/upload-artifact@v4
5353
with:
5454
path: ${{ github.workspace }}/documentation/documentation.tar.xz
5555
name: documentation.tar.xz

.github/workflows/code_style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
git
2222
2323
- name: Checkout
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v4
2525

2626
- name: Fetch ${{ github.base_ref }}
2727
shell: bash

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: styfle/cancel-workflow-action@0.11.0
1919

2020
- name: Checkout
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222

2323
- name: Download artifacts
2424
uses: actions/github-script@v6

.github/workflows/static_analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
rm -rf ${{ env.INEXOR_VULKAN_SDK_PATH }}/${{ env.INEXOR_VULKAN_VERSION }}/x86_64/lib/cmake/volk/
7272
7373
- name: Checkout
74-
uses: actions/checkout@v3
74+
uses: actions/checkout@v4
7575

7676
- name: Configure CMake
7777
run: |

documentation/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
r"https://github.com/.*#" # do not check anchors from GitHub, JS magic
5050
]
5151

52-
mermaid_version = "8.9.2"
52+
mermaid_version = "11.4.1"
5353

5454
# Setup the breathe extension
5555
breathe_projects = {

include/inexor/vulkan-renderer/bezier_curve.hpp

Lines changed: 0 additions & 97 deletions
This file was deleted.

include/inexor/vulkan-renderer/msaa_target.hpp

Lines changed: 0 additions & 17 deletions
This file was deleted.

include/inexor/vulkan-renderer/renderer.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
#include "inexor/vulkan-renderer/camera.hpp"
44
#include "inexor/vulkan-renderer/fps_counter.hpp"
55
#include "inexor/vulkan-renderer/imgui.hpp"
6-
#include "inexor/vulkan-renderer/msaa_target.hpp"
76
#include "inexor/vulkan-renderer/octree_gpu_vertex.hpp"
87
#include "inexor/vulkan-renderer/time_step.hpp"
98
#include "inexor/vulkan-renderer/wrapper/instance.hpp"

src/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
set(INEXOR_SOURCE_FILES
22
vulkan-renderer/application.cpp
3-
vulkan-renderer/bezier_curve.cpp
43
vulkan-renderer/camera.cpp
54
vulkan-renderer/exception.cpp
65
vulkan-renderer/fps_counter.cpp

src/vulkan-renderer/bezier_curve.cpp

Lines changed: 0 additions & 132 deletions
This file was deleted.

0 commit comments

Comments
 (0)