Skip to content

Commit

Permalink
Revert changes in meta.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
mag1cp1n authored Oct 25, 2023
1 parent 58e6073 commit 20a0c92
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 16 deletions.
17 changes: 1 addition & 16 deletions conda/conda-build/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,6 @@
{# We need to have a default value for the initial pass over the recipe #}
{% set gpu_enabled_bool = false %}
{% endif %}
{% if ucx_enabled == "true" %}
{% set ucx_enabled_bool = true %}
{% elif ucx_enabled == "false" %}
{% set ucx_enabled_bool = false %}
{% else %}
{# We need to have a default value for the initial pass over the recipe #}
{% set ucx_enabled_bool = false %}
{% endif %}

{% if debug_build == "true" %}
{% set debug_build_bool = true %}
Expand Down Expand Up @@ -56,13 +48,6 @@
{% set cpu_tag='' %}
{% endif %}

{% if not ucx_enabled_bool %}
{% set ucx_tag='_ucx' %}
{% else %}
{% set ucx_tag='' %}
{% endif %}


{% if debug_build_bool %}
{% set debug_tag='_debug' %}
{% else %}
Expand All @@ -88,7 +73,7 @@ build:
missing_dso_whitelist:
- '*libcuda.so*'

string: "cuda{{ cuda_major }}_py{{ py_version }}{{ git_describe_hash }}_{{ PKG_BUILDNUM }}{{ cpu_tag }}{{ ucx_tag }}{{ debug_tag }}"
string: "cuda{{ cuda_major }}_py{{ py_version }}{{ git_describe_hash }}_{{ PKG_BUILDNUM }}{{ cpu_tag }}{{ debug_tag }}"

script_env:
- SCCACHE_BUCKET
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ run_test_or_analysis() {
ucx_libs=
[ "${UCX_ENABLED:-}" = "ON" ] && usx_libs=ucx openmpi
echo "Executing unit tests..."
echo "ucx_libs=$ucx_libs"
mamba install -y -n "${DEFAULT_CONDA_ENV:-legate}" -c conda-forge pytest pytest-mock ipython jupyter_client $ucx_libs
cd ~/legate/tests/unit
pytest -v --verbosity=6
Expand Down

0 comments on commit 20a0c92

Please sign in to comment.