From e3a1fbcfd2ce251f7cff269938063b8f14049a88 Mon Sep 17 00:00:00 2001 From: Eduardo Doria Date: Sat, 7 Dec 2024 15:09:53 -0300 Subject: [PATCH] Update build-tool.yml --- .github/workflows/build-tool.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-tool.yml b/.github/workflows/build-tool.yml index 2d38fbaf..f26c9a2c 100644 --- a/.github/workflows/build-tool.yml +++ b/.github/workflows/build-tool.yml @@ -101,18 +101,24 @@ jobs: if: ${{ startsWith(matrix.config.os, 'windows') }} run: | choco install ninja cmake + ninja --version + cmake --version - name: Install dependencies on Ubuntu if: ${{ startsWith(matrix.config.os, 'ubuntu') }} run: | sudo apt-get update sudo apt-get install libglfw3-dev libxi-dev libxcursor-dev libgl1-mesa-dev ninja-build cmake + ninja --version + cmake --version - name: Install dependencies on macOS if: ${{ startsWith(matrix.config.os, 'macos') }} run: | - brew install cmake ninja + brew install ninja cmake pip3 install --upgrade --break-system-packages click + ninja --version + cmake --version - name: Install dependencies if: ${{ !startsWith(matrix.config.os, 'macos') }}