This is an automated email from the ASF dual-hosted git repository. vterentev pushed a commit to branch fix-cmake-missing in repository https://gitbox.apache.org/repos/asf/beam.git
commit 3848e9411672c631eca1c14f485ec6c4d73532cf Author: Vitaly Terentyev <[email protected]> AuthorDate: Thu Feb 19 18:31:05 2026 +0400 Install cmake --- .github/workflows/beam_PostCommit_Yaml_Xlang_Direct.yml | 4 ++++ .github/workflows/beam_PreCommit_Python_ML.yml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/beam_PostCommit_Yaml_Xlang_Direct.yml b/.github/workflows/beam_PostCommit_Yaml_Xlang_Direct.yml index 7cadff17f07..baa12cbde41 100644 --- a/.github/workflows/beam_PostCommit_Yaml_Xlang_Direct.yml +++ b/.github/workflows/beam_PostCommit_Yaml_Xlang_Direct.yml @@ -75,6 +75,10 @@ jobs: with: python-version: default java-version: '11' + - name: Install build tools (cmake) + run: | + sudo apt-get update + sudo apt-get install -y --no-install-recommends cmake ninja-build build-essential - name: Set up Cloud SDK uses: google-github-actions/setup-gcloud@v3 - name: run PostCommit Yaml Xlang Direct script diff --git a/.github/workflows/beam_PreCommit_Python_ML.yml b/.github/workflows/beam_PreCommit_Python_ML.yml index cecb2e65506..867dc93dab6 100644 --- a/.github/workflows/beam_PreCommit_Python_ML.yml +++ b/.github/workflows/beam_PreCommit_Python_ML.yml @@ -117,6 +117,10 @@ jobs: PY_VER=${{ matrix.python_version }} PY_VER_CLEAN=${PY_VER//.} echo "py_ver_clean=$PY_VER_CLEAN" >> $GITHUB_OUTPUT + - name: Install build tools (cmake) + run: | + sudo apt-get update + sudo apt-get install -y --no-install-recommends cmake ninja-build build-essential - name: Run pythonPreCommit uses: ./.github/actions/gradle-command-self-hosted-action with:
