Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove build_script & test_script #193

Merged
merged 1 commit into from
Mar 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .github/workflows/conda-cpp-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ on:
node_type:
type: string
default: "cpu8"
build_script:
type: string
script:
type: string
default: "ci/build_cpp.sh"
Expand Down Expand Up @@ -110,7 +108,7 @@ jobs:
echo "RAPIDS_REF_NAME=${{ inputs.branch || github.ref_name }}" >> "${GITHUB_ENV}"
echo "RAPIDS_NIGHTLY_DATE=${{ inputs.date }}" >> "${GITHUB_ENV}"
- name: C++ build
run: ${{ inputs.build_script || inputs.script }}
run: ${{ inputs.script }}
env:
GH_TOKEN: ${{ github.token }}
- name: Upload additional artifacts
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/conda-cpp-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ on:
type: string
repo:
type: string
test_script:
type: string
script:
type: string
default: "ci/test_cpp.sh"
Expand Down Expand Up @@ -135,7 +133,7 @@ jobs:
echo "RAPIDS_REF_NAME=${{ inputs.branch || github.ref_name }}" >> "${GITHUB_ENV}"
echo "RAPIDS_NIGHTLY_DATE=${{ inputs.date }}" >> "${GITHUB_ENV}"
- name: C++ tests
run: ${{ inputs.test_script || inputs.script }}
run: ${{ inputs.script }}
env:
GH_TOKEN: ${{ github.token }}
- name: Generate test report
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/conda-python-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ on:
node_type:
type: string
default: "cpu8"
build_script:
type: string
script:
type: string
default: "ci/build_python.sh"
Expand Down Expand Up @@ -116,7 +114,7 @@ jobs:
echo "RAPIDS_REF_NAME=${{ inputs.branch || github.ref_name }}" >> "${GITHUB_ENV}"
echo "RAPIDS_NIGHTLY_DATE=${{ inputs.date }}" >> "${GITHUB_ENV}"
- name: Python build
run: ${{ inputs.build_script || inputs.script }}
run: ${{ inputs.script }}
env:
GH_TOKEN: ${{ github.token }}
- name: Upload additional artifacts
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/conda-python-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ on:
type: string
repo:
type: string
test_script:
type: string
script:
type: string
default: "ci/test_python.sh"
Expand Down Expand Up @@ -139,7 +137,7 @@ jobs:
echo "RAPIDS_REF_NAME=${{ inputs.branch || github.ref_name }}" >> "${GITHUB_ENV}"
echo "RAPIDS_NIGHTLY_DATE=${{ inputs.date }}" >> "${GITHUB_ENV}"
- name: Python tests
run: ${{ inputs.test_script || inputs.script }}
run: ${{ inputs.script }}
env:
GH_TOKEN: ${{ github.token }}
- name: Generate test report
Expand Down