Skip to content
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
10 changes: 8 additions & 2 deletions .azure-pipelines/azure-pipelines-linux.yml

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

7 changes: 4 additions & 3 deletions .azure-pipelines/azure-pipelines-osx.yml

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

10 changes: 6 additions & 4 deletions .azure-pipelines/azure-pipelines-win.yml

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

2 changes: 2 additions & 0 deletions .ci_support/linux_.yaml → .ci_support/linux_64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,5 @@ openssl:
pin_run_as_build:
openssl:
max_pin: x.x.x
target_platform:
- linux-64
2 changes: 2 additions & 0 deletions .ci_support/linux_aarch64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,5 @@ openssl:
pin_run_as_build:
openssl:
max_pin: x.x.x
target_platform:
- linux-aarch64
2 changes: 2 additions & 0 deletions .ci_support/linux_ppc64le_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,5 @@ openssl:
pin_run_as_build:
openssl:
max_pin: x.x.x
target_platform:
- linux-ppc64le
4 changes: 3 additions & 1 deletion .ci_support/osx_.yaml → .ci_support/osx_64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ MACOSX_DEPLOYMENT_TARGET:
c_compiler:
- clang
c_compiler_version:
- '9'
- '10'
channel_sources:
- conda-forge,defaults
channel_targets:
Expand All @@ -17,3 +17,5 @@ openssl:
pin_run_as_build:
openssl:
max_pin: x.x.x
target_platform:
- osx-64
2 changes: 2 additions & 0 deletions .ci_support/win_.yaml → .ci_support/win_64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,7 @@ openssl:
pin_run_as_build:
openssl:
max_pin: x.x.x
target_platform:
- win-64
vc:
- '14'
1 change: 1 addition & 0 deletions .drone.yml

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

5 changes: 3 additions & 2 deletions .scripts/build_steps.sh

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

8 changes: 7 additions & 1 deletion .scripts/run_docker_build.sh

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

7 changes: 4 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.

6 changes: 2 additions & 4 deletions .travis.yml

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

2 changes: 1 addition & 1 deletion LICENSE.txt

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

16 changes: 8 additions & 8 deletions README.md

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

4 changes: 2 additions & 2 deletions azure-pipelines.yml

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

2 changes: 1 addition & 1 deletion recipe/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ fi
chmod +x ./autogen.sh

./autogen.sh
./configure --prefix="${PREFIX}" --host="${HOST}"
./configure --prefix="${PREFIX}" --host="${HOST}" --disable-static
make -j${CPU_COUNT}

#
Expand Down
4 changes: 2 additions & 2 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ source:
- 0001-Fix-destination-for-DLLs-lib-bin.patch

build:
number: 1
number: 2
run_exports:
# https://abi-laboratory.pro/tracker/timeline/libevent/
- {{ pin_subpackage('libevent', max_pin='x.x.x') }}
Expand Down Expand Up @@ -64,7 +64,7 @@ test:
] %}

{% for each_lib in libs %}
- test -f "${PREFIX}/lib/{{ each_lib }}.a" # [unix]
- test ! -f "${PREFIX}/lib/{{ each_lib }}.a" # [unix]
- test -f "${PREFIX}/lib/{{ each_lib }}.dylib" # [osx]
- test -f "${PREFIX}/lib/{{ each_lib }}.so" # [linux]
{% endfor %}
Expand Down