-
Notifications
You must be signed in to change notification settings - Fork 3
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
1 changed file
with
20 additions
and
6 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 |
---|---|---|
|
@@ -2,7 +2,7 @@ name: anari-visionaray CI | |
|
||
on: | ||
push: | ||
branches: [ main ] | ||
branches: [ main, ci ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
|
@@ -11,17 +11,30 @@ jobs: | |
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
os: [ubuntu-24.04] | ||
config: [Release, Debug] | ||
cuda: [ON] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install CUDA | ||
uses: Jimver/[email protected] | ||
with: | ||
cuda: '12.5.0' | ||
|
||
- name: Setup CUDA | ||
run: | | ||
echo "CUDA_PATH=/usr/local/cuda-12.5" >> $GITHUB_ENV | ||
echo "/usr/local/cuda-12.5/bin" >> $GITHUB_PATH | ||
nvcc -V | ||
nvidia-smi | ||
- name: Install Packages | ||
if: ${{ matrix.os == 'ubuntu-latest' }} | ||
if: ${{ matrix.os == 'ubuntu-24.04' }} | ||
run: | | ||
sudo apt update | ||
sudo apt install -y libglew-dev libboost-all-dev # nvidia-cuda-toolkit | ||
sudo apt install -y libglew-dev libboost-all-dev | ||
- name: Checkout ANARI-SDK | ||
uses: actions/checkout@v3 | ||
|
@@ -58,7 +71,8 @@ jobs: | |
-DVSNRAY_ENABLE_EXAMPLES:BOOL=OFF \ | ||
-DVSNRAY_ENABLE_VIEWER:BOOL=OFF \ | ||
-DVSNRAY_ENABLE_COMMON:BOOL=OFF \ | ||
-DVSNRAY_ENABLE_CUDA:BOOL=OFF | ||
-DVSNRAY_ENABLE_CUDA:BOOL=${{ matrix.cuda }} \ | ||
-DVSNRAY_ENABLE_TBB:BOOL=OFF \ | ||
cmake --build visionaray/build --target install | ||
- name: Configure CMake | ||
|
@@ -69,7 +83,7 @@ jobs: | |
-DCMAKE_BUILD_TYPE=${{ matrix.config }} | ||
-DCMAKE_INSTALL_PREFIX=${{github.workspace}}/build/install | ||
-DBUILD_SHARED_LIBS:BOOL=ON | ||
-DANARI_VISIONARAY_ENABLE_CUDA:BOOL=OFF # cuda and gcc-11.4 don't work together | ||
-DANARI_VISIONARAY_ENABLE_CUDA:BOOL=${{ matrix.cuda }} | ||
- name: Build | ||
run: cmake --build ${{github.workspace}}/build --config ${{ matrix.config }} --target install |