File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -161,14 +161,18 @@ jobs:
161
161
conda search ${{ env.PACKAGE_NAME }} -c ${{ env.CHANNEL_PATH }} --override-channels --info --json > ${{ env.VER_JSON_PATH }}
162
162
cat ${{ env.VER_JSON_PATH }}
163
163
164
+ - name : Print dependencies
165
+ run : |
166
+ conda search ${{ env.PACKAGE_NAME }} -c ${{ env.CHANNEL_PATH }} --override-channels --info
167
+
164
168
- name : Collect dependencies
165
169
shell : bash -l {0}
166
170
run : |
167
171
export PACKAGE_VERSION=$(python -c "${{ env.VER_SCRIPT1 }} ${{ env.VER_SCRIPT2 }}")
168
172
echo "PACKAGE_VERSION=$PACKAGE_VERSION" >> $GITHUB_ENV
169
173
170
174
# 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
172
176
- name : Install built package
173
177
run : conda install ${{ env.PACKAGE_NAME }}=${{ env.PACKAGE_VERSION }} intel-opencl-rt -c ${{ env.CHANNEL_PATH }} --override-channels
174
178
You can’t perform that action at this time.
0 commit comments