diff --git a/.azure-pipelines/azure-pipelines-linux.yml b/.azure-pipelines/azure-pipelines-linux.yml index 3b9dee71..fd96606e 100755 --- a/.azure-pipelines/azure-pipelines-linux.yml +++ b/.azure-pipelines/azure-pipelines-linux.yml @@ -8,16 +8,28 @@ jobs: vmImage: ubuntu-latest strategy: matrix: - linux_64_: - CONFIG: linux_64_ + linux_64_openssl1.1.1: + CONFIG: linux_64_openssl1.1.1 UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_: - CONFIG: linux_aarch64_ + linux_64_openssl3: + CONFIG: linux_64_openssl3 UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_: - CONFIG: linux_ppc64le_ + linux_aarch64_openssl1.1.1: + CONFIG: linux_aarch64_openssl1.1.1 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_openssl3: + CONFIG: linux_aarch64_openssl3 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_openssl1.1.1: + CONFIG: linux_ppc64le_openssl1.1.1 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_openssl3: + CONFIG: linux_ppc64le_openssl3 UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 timeoutInMinutes: 360 diff --git a/.azure-pipelines/azure-pipelines-osx.yml b/.azure-pipelines/azure-pipelines-osx.yml index 8032e967..5fa9ba9c 100755 --- a/.azure-pipelines/azure-pipelines-osx.yml +++ b/.azure-pipelines/azure-pipelines-osx.yml @@ -8,11 +8,17 @@ jobs: vmImage: macOS-11 strategy: matrix: - osx_64_: - CONFIG: osx_64_ + osx_64_openssl1.1.1: + CONFIG: osx_64_openssl1.1.1 UPLOAD_PACKAGES: 'True' - osx_arm64_: - CONFIG: osx_arm64_ + osx_64_openssl3: + CONFIG: osx_64_openssl3 + UPLOAD_PACKAGES: 'True' + osx_arm64_openssl1.1.1: + CONFIG: osx_arm64_openssl1.1.1 + UPLOAD_PACKAGES: 'True' + osx_arm64_openssl3: + CONFIG: osx_arm64_openssl3 UPLOAD_PACKAGES: 'True' timeoutInMinutes: 360 diff --git a/.azure-pipelines/azure-pipelines-win.yml b/.azure-pipelines/azure-pipelines-win.yml index 8a0bcaec..da461d64 100755 --- a/.azure-pipelines/azure-pipelines-win.yml +++ b/.azure-pipelines/azure-pipelines-win.yml @@ -8,8 +8,11 @@ jobs: vmImage: windows-2019 strategy: matrix: - win_64_: - CONFIG: win_64_ + win_64_openssl1.1.1: + CONFIG: win_64_openssl1.1.1 + UPLOAD_PACKAGES: 'True' + win_64_openssl3: + CONFIG: win_64_openssl3 UPLOAD_PACKAGES: 'True' timeoutInMinutes: 360 variables: diff --git a/.ci_support/linux_64_.yaml b/.ci_support/linux_64_openssl1.1.1.yaml similarity index 96% rename from .ci_support/linux_64_.yaml rename to .ci_support/linux_64_openssl1.1.1.yaml index f11d849b..23fea7be 100644 --- a/.ci_support/linux_64_.yaml +++ b/.ci_support/linux_64_openssl1.1.1.yaml @@ -27,3 +27,5 @@ target_platform: zip_keys: - - c_compiler_version - cxx_compiler_version +zlib: +- '1.2' diff --git a/.ci_support/linux_64_openssl3.yaml b/.ci_support/linux_64_openssl3.yaml new file mode 100644 index 00000000..6ac9f146 --- /dev/null +++ b/.ci_support/linux_64_openssl3.yaml @@ -0,0 +1,31 @@ +aws_c_common: +- 0.8.2 +aws_c_event_stream: +- 0.2.15 +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '10' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +libcurl: +- '7' +openssl: +- '3' +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_.yaml b/.ci_support/linux_aarch64_openssl1.1.1.yaml similarity index 97% rename from .ci_support/linux_aarch64_.yaml rename to .ci_support/linux_aarch64_openssl1.1.1.yaml index 3740f244..d4a6f32e 100644 --- a/.ci_support/linux_aarch64_.yaml +++ b/.ci_support/linux_aarch64_openssl1.1.1.yaml @@ -31,3 +31,5 @@ target_platform: zip_keys: - - c_compiler_version - cxx_compiler_version +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_openssl3.yaml b/.ci_support/linux_aarch64_openssl3.yaml new file mode 100644 index 00000000..b7b248f1 --- /dev/null +++ b/.ci_support/linux_aarch64_openssl3.yaml @@ -0,0 +1,35 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +aws_c_common: +- 0.8.2 +aws_c_event_stream: +- 0.2.15 +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_arch: +- aarch64 +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '10' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +libcurl: +- '7' +openssl: +- '3' +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +zlib: +- '1.2' diff --git a/.ci_support/linux_ppc64le_.yaml b/.ci_support/linux_ppc64le_openssl1.1.1.yaml similarity index 96% rename from .ci_support/linux_ppc64le_.yaml rename to .ci_support/linux_ppc64le_openssl1.1.1.yaml index ebfe8bae..32018a9d 100644 --- a/.ci_support/linux_ppc64le_.yaml +++ b/.ci_support/linux_ppc64le_openssl1.1.1.yaml @@ -27,3 +27,5 @@ target_platform: zip_keys: - - c_compiler_version - cxx_compiler_version +zlib: +- '1.2' diff --git a/.ci_support/linux_ppc64le_openssl3.yaml b/.ci_support/linux_ppc64le_openssl3.yaml new file mode 100644 index 00000000..03796a01 --- /dev/null +++ b/.ci_support/linux_ppc64le_openssl3.yaml @@ -0,0 +1,31 @@ +aws_c_common: +- 0.8.2 +aws_c_event_stream: +- 0.2.15 +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '10' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +libcurl: +- '7' +openssl: +- '3' +target_platform: +- linux-ppc64le +zip_keys: +- - c_compiler_version + - cxx_compiler_version +zlib: +- '1.2' diff --git a/.ci_support/osx_64_.yaml b/.ci_support/osx_64_openssl1.1.1.yaml similarity index 96% rename from .ci_support/osx_64_.yaml rename to .ci_support/osx_64_openssl1.1.1.yaml index fe485d25..d780a263 100644 --- a/.ci_support/osx_64_.yaml +++ b/.ci_support/osx_64_openssl1.1.1.yaml @@ -29,3 +29,5 @@ target_platform: zip_keys: - - c_compiler_version - cxx_compiler_version +zlib: +- '1.2' diff --git a/.ci_support/osx_64_openssl3.yaml b/.ci_support/osx_64_openssl3.yaml new file mode 100644 index 00000000..4a1ffc35 --- /dev/null +++ b/.ci_support/osx_64_openssl3.yaml @@ -0,0 +1,33 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +MACOSX_SDK_VERSION: +- '10.12' +aws_c_common: +- 0.8.2 +aws_c_event_stream: +- 0.2.15 +c_compiler: +- clang +c_compiler_version: +- '14' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '14' +libcurl: +- '7' +macos_machine: +- x86_64-apple-darwin13.4.0 +openssl: +- '3' +target_platform: +- osx-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +zlib: +- '1.2' diff --git a/.ci_support/osx_arm64_.yaml b/.ci_support/osx_arm64_openssl1.1.1.yaml similarity index 96% rename from .ci_support/osx_arm64_.yaml rename to .ci_support/osx_arm64_openssl1.1.1.yaml index 7a5f4e19..ff5ff636 100644 --- a/.ci_support/osx_arm64_.yaml +++ b/.ci_support/osx_arm64_openssl1.1.1.yaml @@ -27,3 +27,5 @@ target_platform: zip_keys: - - c_compiler_version - cxx_compiler_version +zlib: +- '1.2' diff --git a/.ci_support/osx_arm64_openssl3.yaml b/.ci_support/osx_arm64_openssl3.yaml new file mode 100644 index 00000000..06befcc9 --- /dev/null +++ b/.ci_support/osx_arm64_openssl3.yaml @@ -0,0 +1,31 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +aws_c_common: +- 0.8.2 +aws_c_event_stream: +- 0.2.15 +c_compiler: +- clang +c_compiler_version: +- '14' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '14' +libcurl: +- '7' +macos_machine: +- arm64-apple-darwin20.0.0 +openssl: +- '3' +target_platform: +- osx-arm64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +zlib: +- '1.2' diff --git a/.ci_support/win_64_.yaml b/.ci_support/win_64_openssl1.1.1.yaml similarity index 94% rename from .ci_support/win_64_.yaml rename to .ci_support/win_64_openssl1.1.1.yaml index 54273c48..8557d8c9 100644 --- a/.ci_support/win_64_.yaml +++ b/.ci_support/win_64_openssl1.1.1.yaml @@ -16,3 +16,5 @@ openssl: - 1.1.1 target_platform: - win-64 +zlib: +- '1.2' diff --git a/.ci_support/win_64_openssl3.yaml b/.ci_support/win_64_openssl3.yaml new file mode 100644 index 00000000..01466258 --- /dev/null +++ b/.ci_support/win_64_openssl3.yaml @@ -0,0 +1,20 @@ +aws_c_common: +- 0.8.2 +aws_c_event_stream: +- 0.2.15 +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +libcurl: +- '7' +openssl: +- '3' +target_platform: +- win-64 +zlib: +- '1.2' diff --git a/README.md b/README.md index 705de298..5d17ff61 100644 --- a/README.md +++ b/README.md @@ -36,45 +36,87 @@ Current build status
Variant | Status | |
---|---|---|
linux_64 | +linux_64_openssl1.1.1 |
- |
linux_aarch64 | +linux_64_openssl3 |
- |
linux_ppc64le | +linux_aarch64_openssl1.1.1 |
- |
osx_64 | +linux_aarch64_openssl3 |
- |
osx_arm64 | +linux_ppc64le_openssl1.1.1 |
- |
win_64 | +linux_ppc64le_openssl3 |
- |
+
osx_64_openssl1.1.1 | +
+
+ |
+ |
osx_64_openssl3 | +
+
+ |
+ |
osx_arm64_openssl1.1.1 | +
+
+ |
+ |
osx_arm64_openssl3 | +
+
+ |
+ |
win_64_openssl1.1.1 | +
+
+ |
+ |
win_64_openssl3 | +
+
+ |