-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5a85130
commit ab616eb
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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' |