diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 6ae31d3824..c7f3431029 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -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 diff --git a/pixi.toml b/pixi.toml index aed51e2d20..766e66481a 100644 --- a/pixi.toml +++ b/pixi.toml @@ -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" }