Skip to content

Commit 72e3ca8

Browse files
authored
Merge pull request #41 from acostadon/ci_add
Add cugraph docs to ci
2 parents 92ee358 + e67946b commit 72e3ca8

File tree

4 files changed

+74
-1
lines changed

4 files changed

+74
-1
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
24.06.00
1+
24.10.00

ci/.github/CODEOWNERS

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners
2+
# Order matters - match of highest importance goes last (last match wins)
3+
4+
#doc code owners
5+
datasets/ @rapidsai/cugraph-doc-codeowners
6+
notebooks/ @rapidsai/cugraph-doc-codeowners
7+
docs/ @rapidsai/cugraph-doc-codeowners
8+
**/*.txt @rapidsai/cugraph-doc-codeowners
9+
**/*.md @rapidsai/cugraph-doc-codeowners
10+
**/*.rst @rapidsai/cugraph-doc-codeowners
11+
**/*.ipynb @rapidsai/cugraph-doc-codeowners
12+
**/*.pdf @rapidsai/cugraph-doc-codeowners
13+
**/*.png @rapidsai/cugraph-doc-codeowners
14+
15+
16+
#CI code owners
17+
/.github/ @rapidsai/ci-codeowners
18+
/ci/ @rapidsai/ci-codeowners
19+
/.pre-commit-config.yaml @rapidsai/ci-codeowners

ci/.github/workflows/build.yaml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: build
2+
3+
on:
4+
push:
5+
branches:
6+
- "branch-*"
7+
tags:
8+
- v[0-9][0-9].[0-9][0-9].[0-9][0-9]
9+
workflow_dispatch:
10+
inputs:
11+
branch:
12+
required: true
13+
type: string
14+
date:
15+
required: true
16+
type: string
17+
sha:
18+
required: true
19+
type: string
20+
build_type:
21+
type: string
22+
default: nightly
23+
24+
concurrency:
25+
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
26+
cancel-in-progress: true
27+
28+
jobs:
29+
docs-build:
30+
if: github.ref_type == 'branch'
31+
needs: python-build
32+
secrets: inherit
33+
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
34+
with:
35+
arch: "amd64"
36+
branch: ${{ inputs.branch }}
37+
build_type: ${{ inputs.build_type || 'branch' }}
38+
container_image: "rapidsai/ci-conda:cuda11.8.0-ubuntu22.04-py3.10"
39+
date: ${{ inputs.date }}
40+
node_type: "gpu-v100-latest-1"
41+
run_script: "ci/build_docs.sh"
42+
sha: ${{ inputs.sha }}

ci/.github/workflows/pr.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
ame: pr
2+
3+
on:
4+
push:
5+
branches:
6+
- "pull-request/[0-9]+"
7+
8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}
10+
cancel-in-progress: true
11+
12+
jobs:

0 commit comments

Comments
 (0)