Skip to content

Commit eaea4e0

Browse files
Replace Buildkite CI with GitHub Actions self-hosted runners
Migrate GPU tests from Buildkite to GitHub Actions using self-hosted runners with the `gpu` label (Tesla T4 on arctic1). - Add .github/workflows/GPU.yml for GPU tests on [self-hosted, Linux, X64, gpu] - Delete .buildkite/pipeline.yml Part of the SciML-wide migration from Buildkite to GitHub Actions self-hosted runners. See ChrisRackauckas/InternalJunk#16 for runner infrastructure details. Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com>
1 parent 428b1be commit eaea4e0

File tree

2 files changed

+38
-17
lines changed

2 files changed

+38
-17
lines changed

.buildkite/pipeline.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

.github/workflows/GPU.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: "GPU Tests"
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
paths-ignore:
8+
- 'docs/**'
9+
push:
10+
branches:
11+
- master
12+
paths-ignore:
13+
- 'docs/**'
14+
15+
concurrency:
16+
group: ${{ github.workflow }}-${{ github.ref }}
17+
cancel-in-progress: ${{ github.ref_name != github.event.repository.default_branch || github.ref != 'refs/tags/v*' }}
18+
19+
jobs:
20+
gpu-tests:
21+
name: "GPU Tests"
22+
runs-on: [self-hosted, Linux, X64, gpu]
23+
timeout-minutes: 60
24+
steps:
25+
- uses: actions/checkout@v6
26+
- uses: julia-actions/setup-julia@v2
27+
with:
28+
version: "1"
29+
- uses: julia-actions/julia-buildpkg@v1
30+
- uses: julia-actions/julia-runtest@v1
31+
env:
32+
GROUP: "GPU"
33+
- uses: julia-actions/julia-processcoverage@v1
34+
- uses: codecov/codecov-action@v5
35+
with:
36+
files: lcov.info
37+
token: ${{ secrets.CODECOV_TOKEN }}
38+
fail_ci_if_error: false

0 commit comments

Comments
 (0)