Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 9ce9b38c authored by LEGRAND Jonathan's avatar LEGRAND Jonathan
Browse files

Update conda package management in CI pipeline

Ensure removal of incompatible packages and install specific versions of `xz` and `libarchive` to improve compatibility.
parent 8ea530aa
No related branches found
No related tags found
No related merge requests found
...@@ -52,9 +52,10 @@ update-osx: ...@@ -52,9 +52,10 @@ update-osx:
script: script:
- source /Users/ci/Miniconda3/etc/profile.d/conda.sh # source conda activation script - source /Users/ci/Miniconda3/etc/profile.d/conda.sh # source conda activation script
- conda activate base - conda activate base
- conda remove --force libarchive xz # Remove existing packages
- conda install -c default xz=5.2.5 libarchive=3.5.2 # Install specific compatible versions
- conda update -c default conda - conda update -c default conda
- conda update -c default conda-build - conda update -c default conda-build
- conda install -c default --force-reinstall xz "libarchive<14.0"
rules: rules:
- when: manual - when: manual
allow_failure: true # Avoid blocking the pipeline if not run allow_failure: true # Avoid blocking the pipeline if not run
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment