File tree Expand file tree Collapse file tree 1 file changed +7
-10
lines changed
Expand file tree Collapse file tree 1 file changed +7
-10
lines changed Original file line number Diff line number Diff line change 2222
2323jobs :
2424 check_clippy :
25- # runs-on: ubuntu-24.04
26- runs-on : self-hosted
25+ runs-on : ubuntu-24.04
2726 name : Clippy
2827 steps :
2928 - uses : actions/checkout@v4
30- # - name: Install required packages
31- # run: sudo apt install --no-install-recommends --yes libhwloc-dev nvidia-cuda-toolkit ocl-icd-opencl-dev
29+ - name : Install required packages
30+ run : sudo apt install --no-install-recommends --yes libhwloc-dev nvidia-cuda-toolkit ocl-icd-opencl-dev
3231 - name : Run cargo clippy
3332 run : cargo clippy --all-targets --workspace -- -D warnings
3433
3534 check_fmt :
36- # runs-on: ubuntu-24.04
37- runs-on : self-hosted
35+ runs-on : ubuntu-24.04
3836 name : Checking fmt
3937 steps :
4038 - uses : actions/checkout@v4
4139 - name : Run cargo fmt
4240 run : cargo fmt --all -- --check
4341
4442 test :
45- # runs-on: ubuntu-24.04
46- runs-on : self-hosted
43+ runs-on : ubuntu-24.04
4744 name : Test
4845 steps :
4946 - uses : actions/checkout@v4
50- # - name: Install required packages
51- # run: sudo apt install --no-install-recommends --yes libhwloc-dev nvidia-cuda-toolkit ocl-icd-opencl-dev
47+ - name : Install required packages
48+ run : sudo apt install --no-install-recommends --yes libhwloc-dev nvidia-cuda-toolkit ocl-icd-opencl-dev
5249 # In case no GPUs are available, it's using the CPU fallback.
5350 - name : Test
5451 run : cargo test --verbose
You can’t perform that action at this time.
0 commit comments