Attempt to upload conda package #29
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
name: pr | ||
on: | ||
push: | ||
branches: | ||
- "pull-request/[0-9]+" | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} | ||
cancel-in-progress: true | ||
jobs: | ||
pr-builder: | ||
needs: | ||
- checks | ||
- compute-matrix | ||
- build-conda | ||
- test-conda | ||
- build-wheels | ||
- test-wheels | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/[email protected] | ||
checks: | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/[email protected] | ||
with: | ||
enable_check_generated_files: false | ||
compute-matrix: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
BUILD_MATRIX: ${{ steps.compute-matrix.outputs.BUILD_MATRIX }} | ||
TEST_MATRIX: ${{ steps.compute-matrix.outputs.TEST_MATRIX }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Compute Build Matrix | ||
id: compute-matrix | ||
uses: ./.github/actions/compute-matrix | ||
build-conda: | ||
needs: | ||
- compute-matrix | ||
uses: ./.github/workflows/conda-python-build.yaml | ||
Check failure on line 44 in .github/workflows/pr.yaml GitHub Actions / prInvalid workflow file
|
||
with: | ||
build_type: pull-request | ||
script: "ci/build_conda.sh" | ||
matrix_filter: ${{ needs.compute-matrix.outputs.BUILD_MATRIX }} | ||
test-conda: | ||
needs: | ||
- build-conda | ||
- compute-matrix | ||
uses: ./.github/workflows/conda-python-tests.yaml | ||
with: | ||
build_type: pull-request | ||
script: "ci/test_conda.sh" | ||
run_codecov: false | ||
matrix_filter: ${{ needs.compute-matrix.outputs.TEST_MATRIX }} | ||
build-wheels: | ||
needs: | ||
- compute-matrix | ||
uses: ./.github/workflows/wheels-build.yaml | ||
with: | ||
build_type: pull-request | ||
script: "ci/build_wheel.sh" | ||
matrix_filter: ${{ needs.compute-matrix.outputs.BUILD_MATRIX }} | ||
test-wheels: | ||
needs: | ||
- build-wheels | ||
- compute-matrix | ||
uses: ./.github/workflows/wheels-test.yaml | ||
with: | ||
build_type: pull-request | ||
script: "ci/test_wheel.sh" | ||
matrix_filter: ${{ needs.compute-matrix.outputs.TEST_MATRIX }} |