Fix bug change of variables #138
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: msolve CI | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 10 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Install dependencies" | |
run: | | |
if [ "$RUNNER_OS" == "Linux" ]; then | |
# sharutils is for uudecode | |
sudo apt install libgmp-dev libflint-dev libmpfr-dev libntl-dev | |
elif [ "$RUNNER_OS" == "macOS" ]; then | |
brew install autoconf automake libtool gmp flint mpfr ntl | |
else | |
echo "$RUNNER_OS not supported" | |
exit 1 | |
fi | |
- name: autogen | |
run: ./autogen.sh | |
- name: configure | |
run: ./configure | |
- name: make | |
run: make | |
- name: make check | |
run: make check | |
- name: make distcheck | |
run: make distcheck |