Skip to content

Commit

Permalink
Fix the last four?
Browse files Browse the repository at this point in the history
  • Loading branch information
visr committed Dec 5, 2024
1 parent da06b17 commit 2f8b59c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/core_testmodels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,15 @@ jobs:
with:
cache-compiled: "true"
cache-registries: "true"
- name: "Manually add Conda.jl folder due to bug in its build step"
if: matrix.os == 'ubuntu-latest'
# https://github.com/JuliaPy/Conda.jl/issues/251
run: |
mkdir -p "/home/runner/.julia/conda/3/x86_64"
- name: "Same but for Windows"
if: matrix.os == 'windows-latest'
run: |
mkdir "C:\Users\runneradmin\.julia\conda\3\x86_64"
- uses: prefix-dev/[email protected]
with:
pixi-version: "latest"
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/core_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,15 @@ jobs:
with:
cache-compiled: "true"
cache-registries: "true"
- name: "Manually add Conda.jl folder due to bug in its build step"
if: matrix.os == 'ubuntu-latest'
# https://github.com/JuliaPy/Conda.jl/issues/251
run: |
mkdir -p "/home/runner/.julia/conda/3/x86_64"
- name: "Same but for Windows"
if: matrix.os == 'windows-latest'
run: |
mkdir "C:\Users\runneradmin\.julia\conda\3\x86_64"
- uses: prefix-dev/[email protected]
with:
pixi-version: "latest"
Expand Down

0 comments on commit 2f8b59c

Please sign in to comment.