Skip to content

Commit

Permalink
Merge pull request #1994 from IntelPython/ci-work-around-upstream-con…
Browse files Browse the repository at this point in the history
…da-json-issue

[MAINT] Work-around for conda producing corrupt JSON files
  • Loading branch information
ndgrigorian authored Feb 19, 2025
2 parents df4f4b1 + 6e53587 commit 61af21b
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/conda-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,9 @@ jobs:
run: echo $CONDA/bin >> $GITHUB_PATH
- name: Install conda-index
# Needed to be able to run conda index
run: conda install conda-index -c conda-forge --override-channels
run: |
conda update -n base --all
conda install conda-index -c conda-forge --override-channels
- name: Create conda channel
run: |
mkdir -p $GITHUB_WORKSPACE/channel/linux-64
Expand Down Expand Up @@ -508,7 +510,9 @@ jobs:
echo ${{ env.CHANNELS }}
- name: Install conda-index
# Needed to be able to run conda index
run: conda install conda-index -c conda-forge --override-channels
run: |
conda update -n base --all
conda install conda-index -c conda-forge --override-channels
- name: Checkout dpctl repo
uses: actions/[email protected]
with:
Expand Down Expand Up @@ -696,7 +700,9 @@ jobs:
run: echo $CONDA/bin >> $GITHUB_PATH
- name: Install conda-index
# Needed to be able to run conda index
run: conda install conda-index -c conda-forge --override-channels
run: |
conda update -n base --all
conda install conda-index -c conda-forge --override-channels
- name: Create conda channel
run: |
mkdir -p $GITHUB_WORKSPACE/channel/linux-64
Expand Down

0 comments on commit 61af21b

Please sign in to comment.