Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add zstd #44

Merged
merged 2 commits into from
Mar 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .ci_support/linux_64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,5 @@ zip_keys:
- cxx_compiler_version
zlib:
- '1.2'
zstd:
- '1.5'
2 changes: 2 additions & 0 deletions .ci_support/linux_aarch64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,5 @@ zip_keys:
- cxx_compiler_version
zlib:
- '1.2'
zstd:
- '1.5'
2 changes: 2 additions & 0 deletions .ci_support/linux_ppc64le_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,5 @@ zip_keys:
- cxx_compiler_version
zlib:
- '1.2'
zstd:
- '1.5'
2 changes: 2 additions & 0 deletions .ci_support/osx_64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,5 @@ zip_keys:
- cxx_compiler_version
zlib:
- '1.2'
zstd:
- '1.5'
2 changes: 2 additions & 0 deletions .ci_support/osx_arm64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,5 @@ zip_keys:
- cxx_compiler_version
zlib:
- '1.2'
zstd:
- '1.5'
2 changes: 2 additions & 0 deletions .ci_support/win_64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,5 @@ vc:
- '14'
zlib:
- '1.2'
zstd:
- '1.5'
25 changes: 23 additions & 2 deletions .gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 3 additions & 9 deletions .scripts/build_steps.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .scripts/run_docker_build.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions .scripts/run_osx_build.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .scripts/run_win_build.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions build-locally.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions conda-forge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ provider:
test_on_native_only: true
conda_build:
pkg_format: '2'
error_overlinking: true
6 changes: 4 additions & 2 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ source:
sha256: f6972acd6a65354f6414e69460d2e175729470632bdac05919bc2f7f32e48cbd

build:
number: 0
number: 1
skip: true # [win and vc<14]

requirements:
Expand All @@ -25,9 +25,11 @@ requirements:
- mpir # [win]
- mpfr
- mpc
- libflint
- llvmdev <17
# these two come from LLVM
- zstd
- zlib
- libflint
run:
- gmp # [unix]
- mpir # [win]
Expand Down