File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments