Use .conda package format

Esse commit está contido em:
Ryan Clary
2024-12-14 19:57:45 -08:00
commit 2c45589541
2 arquivos alterados com 10 adições e 5 exclusões
+5 -1
Ver Arquivo
@@ -58,7 +58,7 @@ jobs:
id: cache
uses: actions/cache@v4
with:
path: installers-conda/build/conda-bld/**/*.tar.bz2
path: installers-conda/build/conda-bld/**/*.conda
key: ${{ matrix.pkg }}_${{ matrix.cache-arch }}_${{ matrix.python-version }}_${{ hashFiles(format('external-deps/{0}/.gitrepo', env.pkg)) }}
lookup-only: true
enableCrossOsArchive: true
@@ -67,6 +67,10 @@ jobs:
if: steps.cache.outputs.cache-hit != 'true'
uses: mamba-org/setup-micromamba@v1
with:
condarc: |
conda_build:
pkg_format: '2'
zstd_compression_level: '19'
environment-file: installers-conda/build-environment.yml
environment-name: spy-inst
create-args: >-
+5 -4
Ver Arquivo
@@ -165,7 +165,7 @@ jobs:
if: env.USE_SUBREPOS == 'true'
uses: actions/cache/restore@v4
with:
path: installers-conda/build/conda-bld/**/*.tar.bz2
path: installers-conda/build/conda-bld/**/*.conda
key: python-lsp-server_noarch_${{ matrix.python-version }}_${{ hashFiles('external-deps/python-lsp-server/.gitrepo') }}
enableCrossOsArchive: true
fail-on-cache-miss: true
@@ -174,7 +174,7 @@ jobs:
if: env.USE_SUBREPOS == 'true'
uses: actions/cache/restore@v4
with:
path: installers-conda/build/conda-bld/**/*.tar.bz2
path: installers-conda/build/conda-bld/**/*.conda
key: qtconsole_noarch_${{ matrix.python-version }}_${{ hashFiles('external-deps/qtconsole/.gitrepo') }}
enableCrossOsArchive: true
fail-on-cache-miss: true
@@ -183,7 +183,7 @@ jobs:
if: env.USE_SUBREPOS == 'true'
uses: actions/cache/restore@v4
with:
path: installers-conda/build/conda-bld/**/*.tar.bz2
path: installers-conda/build/conda-bld/**/*.conda
key: spyder-kernels_${{ matrix.spyk-arch }}_${{ matrix.python-version }}_${{ hashFiles('external-deps/spyder-kernels/.gitrepo') }}
enableCrossOsArchive: true
fail-on-cache-miss: true
@@ -262,8 +262,9 @@ jobs:
run: |
mkdir -p $CONDA_BLD_PATH
conda config --set bld_path $CONDA_BLD_PATH
conda config --set conda_build.root-dir $CONDA_BLD_PATH
conda index $CONDA_BLD_PATH
mamba search -c local --override-channels || true
conda search -c local --override-channels || true
- name: Create Keychain
if: runner.os == 'macOS' && env.NOTARIZE == 'true'