CI: add cuda build #12
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
name: cuda-build | |
on: | |
push: | |
branches: [ "*" ] | |
pull_request: | |
branches: [ "*" ] | |
workflow_dispatch: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
cuda-build: | |
strategy: | |
fail-fast: false | |
matrix: | |
cuda: [ '12.5.0' ] | |
name: GPU build (CUDA ${{ matrix.cuda }}) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: jimver/[email protected] | |
id: cuda-toolkit | |
with: | |
cuda: ${{ matrix.cuda }} | |
method: 'network' | |
sub-packages: '[ "nvcc" ]' | |
- name: check NVCC | |
run: nvcc -V | |
- name: install dependencies | |
run: | |
sudo apt install -y cmake libglu1-mesa-dev libpng-dev libx11-dev xorg-dev | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: build | |
run: | |
mkdir build; | |
cd build; | |
cmake ..; | |
make -j; |