File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -450,7 +450,9 @@ jobs:
450450 - name : Collect dependencies
451451 run : |
452452 CHANNELS="-c $GITHUB_WORKSPACE/channel ${{ env.CHANNELS }}"
453- conda install $PACKAGE_NAME python=${{ matrix.python }} $CHANNELS --only-deps --dry-run > lockfile
453+ export PACKAGE_VERSION=$(python -c "${VER_SCRIPT1} ${VER_SCRIPT2}")
454+ conda create -n ${{ env.EXAMPLES_ENV_NAME }} $PACKAGE_NAME=${PACKAGE_VERSION} python=${{ matrix.python }} $CHANNELS --only-deps --dry-run > lockfile
455+ cat lockfile
454456 - name : Set pkgs_dirs
455457 run : |
456458 echo "pkgs_dirs: [~/.conda/pkgs]" >> ~/.condarc
@@ -468,7 +470,7 @@ jobs:
468470 - name : Install example requirements
469471 shell : bash -l {0}
470472 env :
471- DPCPP_CMPLR : dpcpp_linux-64">=2024.0 "
473+ DPCPP_CMPLR : dpcpp_linux-64">=2024.1 "
472474 run : |
473475 CHANNELS="${{ env.CHANNELS }}"
474476 . $CONDA/etc/profile.d/conda.sh
You can’t perform that action at this time.
0 commit comments