Skip to content

Commit

Permalink
update test machines only
Browse files Browse the repository at this point in the history
  • Loading branch information
AjayThorve committed Mar 6, 2024
1 parent 5a85130 commit ab616eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ jobs:
with:
build_type: pull-request
# Package is pure Python and only ever requires one build.
matrix_filter: 'map(select(.ARCH == "amd64" and (.LINUX_VER | test("centos")|not))) | sort_by(.PY_VER | split(".") | map(tonumber)) | [.[-1]]'
matrix_filter: 'map(select(.LINUX_VER | test("centos") | not)) | sort_by(.PY_VER | split(".") | map(tonumber)) | .[-1]'
wheel-build:
needs: checks
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
with:
build_type: pull-request
# Package is pure Python and only ever requires one build.
matrix_filter: 'map(select(.ARCH == "amd64")) | sort_by(.PY_VER | split(".") | map(tonumber)) | [.[-1]]'
matrix_filter: 'map(select((.LINUX_VER | test("centos")|not))) | sort_by((.PY_VER | split(".") | map(tonumber))) | [.[-1] + {ARCH: "amd64"}]'
script: 'ci/build_wheel.sh'
wheel-tests:
needs: wheel-build
Expand All @@ -54,5 +54,5 @@ jobs:
with:
build_type: pull-request
# Package is pure Python and only ever requires one build.
matrix_filter: 'map(select(.ARCH == "amd64")) | sort_by(.PY_VER | split(".") | map(tonumber)) | [.[-1]]'
matrix_filter: 'map(select(.LINUX_VER | test("centos") | not)) | sort_by(.PY_VER | split(".") | map(tonumber)) | .[-1]'
script: 'ci/test_wheel.sh'

0 comments on commit ab616eb

Please sign in to comment.