-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
58 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ jobs: | |
include: | ||
- os: windows-latest | ||
build-type: Release | ||
- os: ubuntu-latest | ||
- os: ubuntu-24.04 | ||
build-type: Release | ||
|
||
steps: | ||
|
@@ -68,25 +68,24 @@ jobs: | |
|
||
- name: Configure CMake (Windows) | ||
if: matrix.os == 'windows-latest' | ||
run: cmake -B ${{github.workspace}}/build -DWERROR=YES -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} -DRAYX_REQUIRE_CUDA=ON -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/install | ||
run: cmake -B ${{github.workspace}}/build -DWERROR=YES -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} -DRAYX_ENABLE_CUDA=OFF -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/install | ||
|
||
# Linux-specific build steps | ||
- name: Install dependencies (Ubuntu) | ||
if: matrix.os == 'ubuntu-latest' | ||
if: matrix.os == 'ubuntu-24.04' | ||
run: | | ||
sudo apt update --yes | ||
sudo apt install --yes xorg-dev cmake libgtk-3-dev libdbus-1-dev libhdf5-dev libboost-dev | ||
- name: Install Cuda (Ubuntu) | ||
if: matrix.os == 'ubuntu-latest' | ||
uses: Jimver/[email protected] | ||
uses: Jimver/cuda-toolkit@master | ||
id: cuda-toolkit-ubuntu | ||
with: | ||
cuda: '12.3.2' | ||
cuda: '12.4.1' | ||
|
||
- name: Configure CMake (Ubuntu) | ||
if: matrix.os == 'ubuntu-latest' | ||
run: cmake -B ${{github.workspace}}/build -DWERROR=YES -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} -DRAYX_REQUIRE_CUDA=ON -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/install | ||
if: matrix.os == 'ubuntu-24.04' | ||
run: cmake -B ${{github.workspace}}/build -DWERROR=YES -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} -DRAYX_ENABLE_CUDA=OFF -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/install | ||
|
||
# Build the project | ||
- name: Build | ||
|
@@ -109,17 +108,17 @@ jobs: | |
|
||
# Generate Linux artifacts (DEB, RPM, TAR) | ||
- name: CPack (Ubuntu - DEB) | ||
if: matrix.os == 'ubuntu-latest' | ||
if: matrix.os == 'ubuntu-24.04' | ||
working-directory: ${{github.workspace}}/build | ||
run: cpack -G DEB | ||
|
||
- name: CPack (Ubuntu - RPM) | ||
if: matrix.os == 'ubuntu-latest' | ||
if: matrix.os == 'ubuntu-24.04' | ||
working-directory: ${{github.workspace}}/build | ||
run: cpack -G RPM | ||
|
||
- name: CPack (Ubuntu - TAR) | ||
if: matrix.os == 'ubuntu-latest' | ||
if: matrix.os == 'ubuntu-24.04' | ||
working-directory: ${{github.workspace}}/build | ||
run: cpack -G TGZ | ||
|
||
|
@@ -136,7 +135,7 @@ jobs: | |
|
||
# Upload artifacts (Ubuntu) | ||
- name: Upload build artifacts (Ubuntu) | ||
if: matrix.os == 'ubuntu-latest' | ||
if: matrix.os == 'ubuntu-24.04' | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ubuntu-artifacts | ||
|
@@ -158,7 +157,7 @@ jobs: | |
release: | ||
name: Create Release | ||
needs: build-and-release | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule CLI11
updated
12 files
+3 −3 | .pre-commit-config.yaml | |
+0 −6 | CHANGELOG.md | |
+1 −11 | README.md | |
+0 −5 | include/CLI/App.hpp | |
+5 −36 | include/CLI/impl/App_inl.hpp | |
+3 −3 | include/CLI/impl/Formatter_inl.hpp | |
+4 −5 | include/CLI/impl/Option_inl.hpp | |
+1 −13 | tests/AppTest.cpp | |
+0 −68 | tests/ConfigFileTest.cpp | |
+1 −1 | tests/FuzzFailTest.cpp | |
+0 −26 | tests/OptionGroupTest.cpp | |
+0 −1 | tests/fuzzFail/fuzz_app_file_fail40 |
Submodule HighFive
updated
38 files
Submodule glfw
updated
75 files
Submodule googletest
updated
11 files
+1 −1 | CMakeLists.txt | |
+16 −8 | MODULE.bazel | |
+5 −9 | README.md | |
+5 −2 | WORKSPACE | |
+6 −1 | ci/windows-presubmit.bat | |
+1 −1 | docs/advanced.md | |
+1 −1 | googletest/README.md | |
+3 −3 | googletest/include/gtest/internal/gtest-type-util.h | |
+5 −2 | googletest/src/gtest.cc | |
+2 −0 | googletest/test/googletest-death-test-test.cc | |
+6 −6 | googletest_deps.bzl |
Submodule imgui
updated
85 files
Submodule stb
updated
5 files
+5 −5 | README.md | |
+2 −1 | stb_c_lexer.h | |
+349 −115 | stb_image_resize2.h | |
+8 −6 | stb_truetype.h | |
+1 −1 | tests/test_vorbis.c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,8 @@ | |
|
||
#include "Core.h" | ||
|
||
#include <cstdint> | ||
|
||
namespace RAYX { | ||
|
||
/* | ||
|