Skip to content

Commit

Permalink
Merge pull request #41 from acostadon/ci_add
Browse files Browse the repository at this point in the history
Add cugraph docs to ci
  • Loading branch information
acostadon authored Sep 16, 2024
2 parents 92ee358 + e67946b commit 72e3ca8
Show file tree
Hide file tree
Showing 4 changed files with 74 additions and 1 deletion.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
24.06.00
24.10.00
19 changes: 19 additions & 0 deletions ci/.github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners
# Order matters - match of highest importance goes last (last match wins)

#doc code owners
datasets/ @rapidsai/cugraph-doc-codeowners
notebooks/ @rapidsai/cugraph-doc-codeowners
docs/ @rapidsai/cugraph-doc-codeowners
**/*.txt @rapidsai/cugraph-doc-codeowners
**/*.md @rapidsai/cugraph-doc-codeowners
**/*.rst @rapidsai/cugraph-doc-codeowners
**/*.ipynb @rapidsai/cugraph-doc-codeowners
**/*.pdf @rapidsai/cugraph-doc-codeowners
**/*.png @rapidsai/cugraph-doc-codeowners


#CI code owners
/.github/ @rapidsai/ci-codeowners
/ci/ @rapidsai/ci-codeowners
/.pre-commit-config.yaml @rapidsai/ci-codeowners
42 changes: 42 additions & 0 deletions ci/.github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: build

on:
push:
branches:
- "branch-*"
tags:
- v[0-9][0-9].[0-9][0-9].[0-9][0-9]
workflow_dispatch:
inputs:
branch:
required: true
type: string
date:
required: true
type: string
sha:
required: true
type: string
build_type:
type: string
default: nightly

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true

jobs:
docs-build:
if: github.ref_type == 'branch'
needs: python-build
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
with:
arch: "amd64"
branch: ${{ inputs.branch }}
build_type: ${{ inputs.build_type || 'branch' }}
container_image: "rapidsai/ci-conda:cuda11.8.0-ubuntu22.04-py3.10"
date: ${{ inputs.date }}
node_type: "gpu-v100-latest-1"
run_script: "ci/build_docs.sh"
sha: ${{ inputs.sha }}
12 changes: 12 additions & 0 deletions ci/.github/workflows/pr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
ame: pr

on:
push:
branches:
- "pull-request/[0-9]+"

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:

0 comments on commit 72e3ca8

Please sign in to comment.