Skip to content

Commit 0ff0e50

Browse files
Merge pull request #1032 from ChrisRackauckas-Claude/replace-buildkite-with-gha
Replace Buildkite CI with GitHub Actions self-hosted runners
2 parents cceb998 + 2787b8a commit 0ff0e50

2 files changed

Lines changed: 62 additions & 36 deletions

File tree

.buildkite/pipeline.yml

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

.github/workflows/GPU.yml

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
name: "GPU Tests"
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
- 'release-'
8+
paths-ignore:
9+
- 'docs/**'
10+
push:
11+
branches:
12+
- master
13+
paths-ignore:
14+
- 'docs/**'
15+
16+
concurrency:
17+
group: ${{ github.workflow }}-${{ github.ref }}
18+
cancel-in-progress: ${{ github.ref_name != github.event.repository.default_branch || github.ref != 'refs/tags/v*' }}
19+
20+
jobs:
21+
cuda-tests:
22+
name: "CUDA Tests"
23+
runs-on: [self-hosted, Linux, X64, gpu]
24+
timeout-minutes: 240
25+
steps:
26+
- uses: actions/checkout@v6
27+
- uses: julia-actions/setup-julia@v2
28+
with:
29+
version: "1"
30+
- uses: julia-actions/julia-buildpkg@v1
31+
- uses: julia-actions/julia-runtest@v1
32+
env:
33+
GROUP: "CUDA"
34+
- uses: julia-actions/julia-processcoverage@v1
35+
- uses: codecov/codecov-action@v5
36+
with:
37+
files: lcov.info
38+
token: ${{ secrets.CODECOV_TOKEN }}
39+
fail_ci_if_error: false
40+
41+
gpu-docs:
42+
name: "Documentation"
43+
runs-on: [self-hosted, Linux, X64, gpu]
44+
timeout-minutes: 360
45+
if: github.event_name == 'push' || !github.event.pull_request.draft
46+
steps:
47+
- uses: actions/checkout@v6
48+
- uses: julia-actions/setup-julia@v2
49+
with:
50+
version: "1"
51+
- run: |
52+
julia --project=docs -e '
53+
println("--- Instantiating project")
54+
using Pkg
55+
Pkg.develop(PackageSpec(path=pwd()))
56+
Pkg.instantiate()
57+
println("+++ Building documentation")
58+
include("docs/make.jl")'
59+
env:
60+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
61+
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
62+
DATADEPS_ALWAYS_ACCEPT: true

0 commit comments

Comments
 (0)