Migrating to VCPKG to support#6
Merged
guzman109 merged 18 commits intoICICLE-ai:mainfrom Feb 27, 2026
Merged
Conversation
Refactor GitHub Actions workflow for building and publishing Python package. Removed unnecessary steps and streamlined Python setup with 'uv'.
Added additional development libraries for building.
Replace Conan package manager with vcpkg for C++ dependency management in the GitHub Actions build workflow. Changes: - Remove Conan install, profile detect, and toolchain discovery steps - Remove 40+ X11/ALSA apt-get packages required by Conan's transitive deps - Add vcpkg bootstrap and binary cache steps - Linux system deps reduced to: cmake, ninja-build (yum in manylinux) - Retain manylinux_2_28 containers for both x86_64 and aarch64 - vcpkg cache keyed on lib/vcpkg.json per OS/arch Motivation: Conan pulled transitive xorg/system and Perl dependencies for a headless cloud storage library, causing build failures in manylinux containers. vcpkg builds only declared dependencies with native CMake toolchain integration.
Added curl, zip, unzip, and tar to the Linux dependencies.
Fix the command to discover h5py HDF5 location in the CI workflow.
Added a debug step to check the contents of the virtual environment's bin directory.
Removed debug step for checking virtual environment and updated h5py HDF5 discovery command.
…ions instead. Issues with github actions trying to build openssl from bottom up.
…stfiles and workflows.
This was referenced Feb 27, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Build CI was failing due to Conan needing to install Xorg and other Desktop Linux packages as dependencies for
speech-to-textthat is bundled withAWS-SDK-CPP.We're using Alma Linux containers (
manylinux) to support packaging the python module and shared libraries on Linux and different architectures.