Skip to content

Commit

Permalink
Remove build_script & test_script (#193)
Browse files Browse the repository at this point in the history
  • Loading branch information
AyodeAwe authored Mar 19, 2024
1 parent 3a5a7ed commit 6765018
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 12 deletions.
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

0 comments on commit 6765018

Please sign in to comment.