Skip to content

Commit

Permalink
Build v2 conda packages
Browse files Browse the repository at this point in the history
  • Loading branch information
mrclary committed May 6, 2024
1 parent 9e8be35 commit 1feb092
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .github/workflows/installers-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,10 @@ jobs:
if: runner.os == 'Windows'
uses: mamba-org/setup-micromamba@v1
with:
conda-rc: |
conda_build:
pkg_format: '2'
zstd_compression_level: '19'
environment-file: installers-conda/build-environment.yml
environment-name: spy-inst
create-args: >-
Expand All @@ -184,6 +188,10 @@ jobs:
if: runner.os != 'Windows'
uses: mamba-org/setup-micromamba@v1
with:
conda-rc: |
conda_build:
pkg_format: '2'
zstd_compression_level: '19'
environment-file: installers-conda/build-environment.yml
environment-name: spy-inst
create-args: >-
Expand Down
3 changes: 2 additions & 1 deletion installers-conda/build_conda_pkgs.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,8 @@ def build(self):
f"{self.name}={self.version}...")
check_call([
"conda", "mambabuild",
"--no-test", "--skip-existing", "--build-id-pat={n}",
"--skip-existing", "--build-id-pat={n}",
"--no-test", "--no-anaconda-upload",
str(self._fdstk_path / "recipe")
])
finally:
Expand Down

0 comments on commit 1feb092

Please sign in to comment.