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

Enable fiddle extension also on Windows #81

Merged
merged 1 commit into from
Nov 24, 2021
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
4 changes: 4 additions & 0 deletions .ci_support/win_64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,13 @@ channel_targets:
- conda-forge main
cxx_compiler:
- vs2017
libffi:
- '3.4'
openssl:
- 1.1.1
pin_run_as_build:
libffi:
max_pin: x.x
zlib:
max_pin: x.x
target_platform:
Expand Down
1 change: 1 addition & 0 deletions .gitattributes

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

4 changes: 4 additions & 0 deletions build-locally.py

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

7 changes: 4 additions & 3 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ requirements:
- autoconf # [unix]
- automake # [unix]
- make # [unix]
- pkg-config # [unix]
- pkg-config
# We need all host deps also in build for cross-compiling
- gettext # [build_platform != target_platform]
- gmp # [build_platform != target_platform]
Expand All @@ -47,7 +47,7 @@ requirements:
- gdbm # [x86 and unix]
- gettext # [osx]
- gmp # [unix]
- libffi # [unix]
- libffi
- ncurses # [unix]
- openssl
- readline # [unix]
Expand All @@ -69,7 +69,8 @@ test:
- gem --version
- ruby -e 'puts "Hi, from Ruby!"'
- ruby -r rubygems -e 'puts "Has gems."; exit 0'
- ruby -r fiddle -r openssl -r readline -r yaml -r zlib -e 'puts "Has all dependencies."; exit 0' # [unix]
- ruby -r fiddle -r openssl -r yaml -r zlib -e 'puts "Has all dependencies."; exit 0'
- ruby -r readline -e 'puts "Has readline."; exit 0' # [unix]

# Tests it can build libraries with native dependencies
- cd native # [unix]
Expand Down