Disable CUDA workflow.

This commit is contained in:
FiveMovesAhead 2024-10-09 23:13:47 +01:00
parent 1bf4647573
commit 601e938aed

View File

@ -41,17 +41,17 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
with:
targets: wasm32-wasi
- name: Install CUDA
if: env.SKIP_JOB != 'true'
uses: Jimver/cuda-toolkit@v0.2.9
id: cuda-toolkit
with:
cuda: '12.1.0'
method: network
sub-packages: '["nvcc"]'
- name: Cargo Build CUDA
if: env.SKIP_JOB != 'true'
run: cargo build -p tig-algorithms --release --features cuda
# - name: Install CUDA
# if: env.SKIP_JOB != 'true'
# uses: Jimver/cuda-toolkit@v0.2.9
# id: cuda-toolkit
# with:
# cuda: '12.1.0'
# method: network
# sub-packages: '["nvcc"]'
# - name: Cargo Build CUDA
# if: env.SKIP_JOB != 'true'
# run: cargo build -p tig-algorithms --release --features cuda
- name: Cargo Build WASM
if: env.SKIP_JOB != 'true'
run: >