Skip to content

Commit d49e529

Browse files
committed
guess_latest needs wget
1 parent 1a15869 commit d49e529

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/test-wheel-linux.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,14 @@ jobs:
5252
with:
5353
fetch-depth: 0
5454

55+
- name: Install dependencies
56+
uses: ./.github/actions/install_unix_deps
57+
continue-on-error: false
58+
with:
59+
# gcc for Cython tests, jq/wget for artifact fetching
60+
dependencies: "build-essential jq wget"
61+
dependent_exes: "gcc jq wget"
62+
5563
- name: Set environment variables
5664
run: |
5765
PYTHON_VERSION_FORMATTED=$(echo '${{ inputs.python-version }}' | tr -d '.')
@@ -102,14 +110,6 @@ jobs:
102110
echo "SKIP_CUDA_BINDINGS_TEST=${SKIP_CUDA_BINDINGS_TEST}" >> $GITHUB_ENV
103111
echo "SKIP_CUDA_CORE_CYTHON_TEST=${SKIP_CUDA_CORE_CYTHON_TEST}" >> $GITHUB_ENV
104112
105-
- name: Install dependencies
106-
uses: ./.github/actions/install_unix_deps
107-
continue-on-error: false
108-
with:
109-
# gcc for Cython tests, jq/wget for artifact fetching
110-
dependencies: "build-essential jq wget"
111-
dependent_exes: "gcc jq wget"
112-
113113
- name: Download cuda-python build artifacts
114114
if: ${{ env.SKIP_CUDA_BINDINGS_TEST == '0'}}
115115
uses: actions/download-artifact@v4

0 commit comments

Comments
 (0)