From c8170d5ce7924bfec8e5b489d0be12e72b0b5cf4 Mon Sep 17 00:00:00 2001 From: Mauro Toscano <12560266+MauroToscano@users.noreply.github.com> Date: Tue, 5 Sep 2023 12:06:31 -0300 Subject: [PATCH] Remove cuda from CI (#547) * Remove cuda from CI * Fmt ci --- .github/workflows/ci.yaml | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ee1b5bf6d..6d1792ffc 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -112,25 +112,3 @@ jobs: run: make clippy-metal - name: Run tests run: make test-metal - - test_nvidia: - name: Test (Ubuntu, NVIDIA GPU) - runs-on: [self-hosted, cuda] - env: - CARGO_TERM_COLOR: always - steps: - - uses: actions/checkout@v3 - - name: Rustup toolchain install - uses: dtolnay/rust-toolchain@stable - with: - toolchain: stable - components: clippy - - - name: Add CUDA binaries to PATH - run: | - echo /usr/local/cuda/bin >> $GITHUB_PATH - - - name: Run clippy - run: make clippy-cuda - - name: Run tests - run: cargo test -F cuda