From cf4c0ef48f2a3c1a65a4c52fd3375be674527355 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johel=20Ernesto=20Guerrero=20Pe=C3=B1a?= Date: Mon, 25 Sep 2023 15:10:27 -0400 Subject: [PATCH] ci: use latest CMake and Ninja --- .github/workflows/ci-conan.yml | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/.github/workflows/ci-conan.yml b/.github/workflows/ci-conan.yml index 4afbdbe0c..b252ad2b1 100644 --- a/.github/workflows/ci-conan.yml +++ b/.github/workflows/ci-conan.yml @@ -146,6 +146,7 @@ jobs: steps: - uses: actions/checkout@v3 + - uses: lukka/get-cmake@latest - name: Cache Conan data uses: actions/cache@v3 env: @@ -192,20 +193,6 @@ jobs: shell: bash run: | sudo xcode-select -s "/Applications/Xcode_13.0.app" - - name: Install Ninja - shell: bash - run: | - if [ $RUNNER_OS == 'Linux' ]; then - sudo apt install -y ninja-build - elif [ $RUNNER_OS == 'Windows' ]; then - choco install ninja - elif [ $RUNNER_OS == 'macOS' ]; then - brew update - brew install ninja - else - echo "'$RUNNER_OS' not supported" - exit 1 - fi - name: Set up Python uses: actions/setup-python@v4 with: