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

Bump build number #116

Closed
wants to merge 9 commits into from
Closed
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
120 changes: 60 additions & 60 deletions .azure-pipelines/azure-pipelines-linux.yml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .azure-pipelines/azure-pipelines-osx.yml

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

120 changes: 60 additions & 60 deletions README.md

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion recipe/conda_build_config.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
MACOSX_DEPLOYMENT_TARGET: # [osx and x86_64]
c_stdlib_version: # [osx and x86_64]
- "10.14" # [osx and x86_64]
MACOSX_SDK_VERSION: # [osx and x86_64]
- "10.14" # [osx and x86_64]
Expand All @@ -9,3 +9,6 @@ c_compiler: # [win]
- vs2022 # [win]
cxx_compiler: # [win]
- vs2022 # [win]

c_stdlib_version: # [linux]
- "2.17" # [linux]
9 changes: 5 additions & 4 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{% set build_ext = "cuda" if cuda_enabled else "cpu" %}
{% set version = "1.17.3" %}
{% set suffix = "" %} # [suffix == None] # help the linter
{% set build = 0 %}
{% set build = 1 %}

{% if cuda_enabled %}
{% set build = build + 200 %}
Expand Down Expand Up @@ -53,6 +53,7 @@ requirements:
- cross-python_{{ target_platform }} # [build_platform != target_platform]
- numpy # [build_platform != target_platform]
- pybind11 # [build_platform != target_platform]
- {{ stdlib('c') }}
- {{ compiler('c') }}
- {{ compiler('cxx') }}
- {{ compiler("cuda") }} # [cuda_compiler_version != "None"]
Expand Down Expand Up @@ -92,7 +93,6 @@ requirements:
- python
- python-flatbuffers
- sympy
- {{ pin_compatible('numpy') }}
# avoid that people without GPUs needlessly download ~0.5-1GB
- __cuda # [cuda_compiler_version != "None"]
run_constrained:
Expand All @@ -118,6 +118,7 @@ outputs:
script: install-cpp.bat # [win]
requirements:
build:
- {{ stdlib('c') }}
- {{ compiler('c') }}
- {{ compiler('cxx') }}
- {{ compiler("cuda") }} # [cuda_compiler_version != "None"]
Expand All @@ -127,8 +128,8 @@ outputs:
- onnxruntime-cpp <0a0 # [suffix == "-novec"]
test:
requires:
- {{ compiler('cxx') }}
- sysroot_linux-64 2.17 # [linux64 and cdt_name!='cos6']
- {{ stdlib('c') }}
- {{ compiler('cxx') }}
files:
- test.cpp
- run_cpp_test.bat # [win]
Expand Down
Loading