Skip to content

Commit 7c28a7e

Browse files
committed
Add dependency print
1 parent f4fe483 commit 7c28a7e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/conda-package.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,14 +161,18 @@ jobs:
161161
conda search ${{ env.PACKAGE_NAME }} -c ${{ env.CHANNEL_PATH }} --override-channels --info --json > ${{ env.VER_JSON_PATH }}
162162
cat ${{ env.VER_JSON_PATH }}
163163
164+
- name: Print dependencies
165+
run: |
166+
conda search ${{ env.PACKAGE_NAME }} -c ${{ env.CHANNEL_PATH }} --override-channels --info
167+
164168
- name: Collect dependencies
165169
shell: bash -l {0}
166170
run: |
167171
export PACKAGE_VERSION=$(python -c "${{ env.VER_SCRIPT1 }} ${{ env.VER_SCRIPT2 }}")
168172
echo "PACKAGE_VERSION=$PACKAGE_VERSION" >> $GITHUB_ENV
169173
170174
# We want to make sure that all dependecies install automatically.
171-
# intel::intel-opencl-rt is needed for set-intel-ocl-icd-registry.ps1
175+
# intel-opencl-rt is needed for set-intel-ocl-icd-registry.ps1
172176
- name: Install built package
173177
run: conda install ${{ env.PACKAGE_NAME }}=${{ env.PACKAGE_VERSION }} intel-opencl-rt -c ${{ env.CHANNEL_PATH }} --override-channels
174178

0 commit comments

Comments
 (0)