Skip to content

Commit

Permalink
Update cmake.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
vsoftco committed Nov 28, 2023
1 parent 49c720f commit 20e5a3e
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,21 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Install gmp
shell: bash
run: |
if [ "$RUNNER_OS" == "Windows" ]; then
git clone https://github.com/microsoft/vcpkg
./vcpkg/bootstrap-vcpkg.bat
./vcpkg/vcpkg install pkgconf:x64-windows 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
# git clone https://github.com/microsoft/vcpkg
# ./vcpkg/bootstrap-vcpkg.bat
# ./vcpkg/vcpkg install pkgconf:x64-windows 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
Expand Down

0 comments on commit 20e5a3e

Please sign in to comment.