File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 35
35
branch : ${{ inputs.branch }}
36
36
date : ${{ inputs.date }}
37
37
sha : ${{ inputs.sha }}
38
+ # Package is pure Python and only ever requires one build.
39
+ matrix_filter : ' map(select((.LINUX_VER | test("centos")|not))) | sort_by((.PY_VER | split(".") | map(tonumber))) | [.[-1] + {ARCH: "amd64"}]'
38
40
upload-conda :
39
41
needs : conda-python-build
40
42
secrets : inherit
Original file line number Diff line number Diff line change @@ -28,12 +28,16 @@ jobs:
28
28
uses : rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-24.02
29
29
with :
30
30
build_type : pull-request
31
+ # Package is pure Python and only ever requires one build.
32
+ matrix_filter : ' map(select((.LINUX_VER | test("centos")|not))) | sort_by((.PY_VER | split(".") | map(tonumber))) | [.[-1] + {ARCH: "amd64"}]'
31
33
conda-python-tests :
32
34
needs : conda-python-build
33
35
secrets : inherit
34
36
uses : rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-24.02
35
37
with :
36
38
build_type : pull-request
39
+ # Package is pure Python and only ever requires one build.
40
+ matrix_filter : ' map(select((.LINUX_VER | test("centos")|not))) | sort_by((.PY_VER | split(".") | map(tonumber))) | [.[-1] + {ARCH: "amd64"}]'
37
41
wheel-build :
38
42
needs : checks
39
43
secrets : inherit
50
54
with :
51
55
build_type : pull-request
52
56
# Package is pure Python and only ever requires one build.
53
- matrix_filter : ' map(select((.LINUX_VER | test("centos")|not))) | sort_by((.PY_VER | split(".") | map(tonumber))) | .[-1] + {ARCH: "amd64"}'
57
+ matrix_filter : ' map(select((.LINUX_VER | test("centos")|not))) | sort_by((.PY_VER | split(".") | map(tonumber))) | [ .[-1] + {ARCH: "amd64"}] '
54
58
script : " ci/test_wheel.sh"
You can’t perform that action at this time.
0 commit comments