Skip to content

Commit

Permalink
Try using copied workflows for PR builder
Browse files Browse the repository at this point in the history
  • Loading branch information
gmarkall committed Jul 23, 2024
1 parent 8e1dd2a commit ae68a1b
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Copyright (c) 2024, NVIDIA CORPORATION.
# SPDX-FileCopyrightText: Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

name: pr

on:
Expand All @@ -20,10 +22,10 @@ jobs:
- build-wheels
- test-wheels
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-24.04
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-24.08
checks:
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-24.04
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-24.08
with:
enable_check_generated_files: false
compute-matrix:
Expand All @@ -39,7 +41,7 @@ jobs:
build-conda:
needs:
- compute-matrix
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-24.04
uses: ./.github/workflows/conda-python-build.yaml
with:
build_type: pull-request
script: "ci/build_conda.sh"
Expand All @@ -48,7 +50,7 @@ jobs:
needs:
- build-conda
- compute-matrix
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-24.04
uses: ./.github/workflows/conda-python-tests.yaml
with:
build_type: pull-request
script: "ci/test_conda.sh"
Expand All @@ -57,7 +59,7 @@ jobs:
build-wheels:
needs:
- compute-matrix
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.04
uses: ./.github/workflows/wheels-build.yaml
with:
build_type: pull-request
script: "ci/build_wheel.sh"
Expand All @@ -66,7 +68,7 @@ jobs:
needs:
- build-wheels
- compute-matrix
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-24.04
uses: ./.github/workflows/wheels-test.yaml
with:
build_type: pull-request
script: "ci/test_wheel.sh"
Expand Down

0 comments on commit ae68a1b

Please sign in to comment.