Skip to content

Commit 5cb6e0e

Browse files
committed
edit: change runners to gpu runners
1 parent b8bbd01 commit 5cb6e0e

1 file changed

Lines changed: 6 additions & 24 deletions

File tree

.github/workflows/release.yml

Lines changed: 6 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -22,28 +22,10 @@ jobs:
2222
strategy:
2323
matrix:
2424
platform:
25-
- runner: ubuntu-22.04
26-
target: x86_64
27-
- runner: ubuntu-22.04
28-
target: x86
29-
- runner: ubuntu-22.04
30-
target: aarch64
31-
- runner: ubuntu-22.04
32-
target: s390x
33-
- runner: ubuntu-22.04
34-
steps:
35-
- name: Installing OpenCL
36-
run: |
37-
sudo apt update
38-
sudo apt install ocl-icd-opencl-dev
39-
40-
- uses: actions/checkout@v4
41-
- name: Testing Rust modules
42-
run: |
43-
cargo test --lib --bins --tests --verbose
44-
45-
test-gpu:
46-
runs-on: gpu-t4-4-core
25+
- runner: ubuntu24-gpu-x64
26+
target: x64
27+
- runner: ubuntu22-gpu-x64
28+
target: x64
4729
steps:
4830
- name: Installing OpenCL
4931
run: |
@@ -166,9 +148,9 @@ jobs:
166148

167149
release:
168150
name: Release
169-
runs-on: gpu-t4-4-core
151+
runs-on: ubuntu24-gpu-x64
170152
if: ${{ startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch' }}
171-
needs: [test-gpu, sdist]
153+
needs: [test, sdist]
172154
permissions:
173155
id-token: write
174156
contents: write

0 commit comments

Comments
 (0)