From 6086291da7e12d1274f2858d59346d8ef6d9b710 Mon Sep 17 00:00:00 2001 From: Vlad Gheorghiu Date: Tue, 28 Nov 2023 21:24:33 -0500 Subject: [PATCH] Update cmake.yml --- .github/workflows/cmake.yml | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 27176e3..50580ab 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -13,7 +13,8 @@ jobs: build: strategy: matrix: - os: [ ubuntu-latest, macos-latest, windows-latest ] +# os: [ ubuntu-latest, macos-latest, windows-latest ] + os: [ windows-latest ] runs-on: ${{ matrix.os }} steps: @@ -26,19 +27,19 @@ jobs: .\vcpkg\bootstrap-vcpkg.bat .\vcpkg\vcpkg install pkgconf:x64-windows - - name: Install gmp - shell: bash - run: | - if [ "$RUNNER_OS" == "Windows" ]; then - ./vcpkg/vcpkg install gmp:x64-windows - elif [ "$RUNNER_OS" == "Linux" ]; then - sudo apt-get install -y libgmp-dev - elif [ "$RUNNER_OS" == "macOS" ]; then - brew install gmp - else - echo "$RUNNER_OS not supported" - exit 1 - fi +# - name: Install gmp +# shell: bash +# run: | +# if [ "$RUNNER_OS" == "Windows" ]; then +# ./vcpkg/vcpkg install gmp:x64-windows +# elif [ "$RUNNER_OS" == "Linux" ]; then +# sudo apt-get install -y libgmp-dev +# elif [ "$RUNNER_OS" == "macOS" ]; then +# brew install gmp +# else +# echo "$RUNNER_OS not supported" +# exit 1 +# fi - name: Configure staq shell: bash