Skip to content

Commit

Permalink
Add nx-cugraph Package Publishing (#16)
Browse files Browse the repository at this point in the history
Closes rapidsai/graph_dl#647

Updates `build.yaml` to enable building & publishing packages from this repo.

Scripts are copied from `build.yaml` from branch-24.12 in https://github.com/rapidsai/cugraph.

Authors:
  - Ralph Liu (https://github.com/nv-rliu)

Approvers:
  - James Lamb (https://github.com/jameslamb)
  - Bradley Dice (https://github.com/bdice)
  - Erik Welch (https://github.com/eriknw)

URL: #16
  • Loading branch information
nv-rliu authored Nov 13, 2024
1 parent 1fa7c1e commit 6a3ba40
Showing 1 changed file with 22 additions and 8 deletions.
30 changes: 22 additions & 8 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
name: build

on:
# TODO: uncomment this condition when ready to start publishing
# packages from this repo
# push:
# branches:
# - "branch-*"
# tags:
# - v[0-9][0-9].[0-9][0-9].[0-9][0-9]
push:
branches:
- "branch-*"
tags:
- v[0-9][0-9].[0-9][0-9].[0-9][0-9]
workflow_dispatch:
inputs:
branch:
Expand All @@ -28,8 +26,24 @@ concurrency:
cancel-in-progress: true

jobs:
conda-python-build:
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
date: ${{ inputs.date }}
sha: ${{ inputs.sha }}
upload-conda:
needs: conda-python-build
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
date: ${{ inputs.date }}
sha: ${{ inputs.sha }}
wheel-build-nx-cugraph:
needs: wheel-publish-nx-cugraph
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
with:
Expand Down

0 comments on commit 6a3ba40

Please sign in to comment.