Skip to content

Commit 155efae

Browse files
authored
Revert "feat: test out self hosted runner (#105)"
This reverts commit bdc9a59.
1 parent d1ad2f5 commit 155efae

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,33 +22,30 @@ env:
2222

2323
jobs:
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

0 commit comments

Comments
 (0)