Skip to content

Commit a6046e3

Browse files
committed
move imgui ui out of libnoorray, cleanup
1 parent 28e6e83 commit a6046e3

108 files changed

Lines changed: 2409 additions & 2240 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yaml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: CUDA CI
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches: [gaussians, main]
7+
workflow_dispatch:
8+
9+
jobs:
10+
build-and-test:
11+
# OptiX headers are distributed under NVIDIA's SDK license and GitHub's
12+
# hosted runners have no NVIDIA GPU. The project runner provides both.
13+
runs-on: [self-hosted, linux, x64, nvidia-gpu]
14+
env:
15+
NR_CUDA_ROOT: /usr/local/cuda
16+
OPTIX_ROOT: ${{ vars.OPTIX_ROOT }}
17+
VULKAN_SDK: ${{ vars.VULKAN_SDK }}
18+
steps:
19+
- uses: actions/checkout@v4
20+
with:
21+
submodules: recursive
22+
23+
- name: Configure
24+
run: |
25+
cmake -S . -B build/ci -G Ninja \
26+
-DNR_CUDA_ROOT="$NR_CUDA_ROOT" \
27+
-DOPTIX_ROOT="$OPTIX_ROOT" \
28+
-DCMAKE_BUILD_TYPE=Release \
29+
-DNR_CUDA_ARCH="${{ vars.NR_CUDA_ARCH || '89' }}" \
30+
-DNR_BUILD_PYTHON=OFF \
31+
-DNR_BUILD_TESTS=ON
32+
33+
- name: Build
34+
run: cmake --build build/ci -j"$(nproc)"
35+
36+
- name: Test
37+
run: ctest --test-dir build/ci --output-on-failure

.github/workflows/release-macos.yaml

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

.github/workflows/release.yaml

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

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,6 @@ CMakeUserPresets.json
1717
/build
1818
/.venv
1919
/.idea
20+
__pycache__/
21+
*.py[cod]
22+
/imgui.ini

0 commit comments

Comments
 (0)