diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8438af8..4a49d6e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -83,6 +83,9 @@ jobs: conda list conda --version + - name: Install openssl for AlluxioCommon Build + run: sudo apt-get install pkg-config libssl-dev + # alluxiocommon related - name: Build alluxiocommon wheels uses: PyO3/maturin-action@v1 diff --git a/rust/alluxiocommon/tests/test_datamanager.py b/rust/alluxiocommon/tests/test_datamanager.py index abfec01..bac153a 100644 --- a/rust/alluxiocommon/tests/test_datamanager.py +++ b/rust/alluxiocommon/tests/test_datamanager.py @@ -1,6 +1,7 @@ def test_import_alluxiocommon(): try: from alluxiocommon import _DataManager + dm = _DataManager(4) print(f"alluxiocommon._DataManager:{dm} instantiated!") except Exception as e: