Skip to content

Commit

Permalink
do not rely on cf variants of dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Krande committed Dec 22, 2024
1 parent b189a0a commit 658a78e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
if: ${{ runner.os != 'Windows' }}
continue-on-error: true # Prevent the workflow from failing
run: |
pixi run ctest --package-file ${{ env.CONDA_FILE }} --channel-priority=disabled
pixi run ctest --package-file ${{ env.CONDA_FILE }}
- name: Save Run directory to artifacts
uses: actions/upload-artifact@v4
Expand Down
4 changes: 2 additions & 2 deletions pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ ctest = { cmd = ["rattler-build", "test", "-c","https://repo.prefix.dev/code-ast

[feature.conda-unix.tasks]
cbuildn = { cmd = ["rattler-build", "build", "-r", "conda/recipe.yaml"] }
cbuild = { cmd = ["rattler-build", "build", "-r", "conda/recipe.yaml", "-c", "conda-forge", "-c", "https://repo.prefix.dev/code-aster"] }
ctest = { cmd = ["rattler-build", "test", "-c", "conda-forge", "-c", "https://repo.prefix.dev/code-aster"] }
cbuild = { cmd = ["rattler-build", "build", "-r", "conda/recipe.yaml", "-c", "https://repo.prefix.dev/code-aster", "-c", "conda-forge"] }
ctest = { cmd = ["rattler-build", "test", "-c","https://repo.prefix.dev/code-aster", "-c", "conda-forge"] }

[feature.local-unix.tasks]
build = { cmd = ["waf", "configure", "build"], description = "Build the project" }
Expand Down

0 comments on commit 658a78e

Please sign in to comment.