Skip to content

Merge pull request #529 from fplll/fix_convert_mpzlong #258

Merge pull request #529 from fplll/fix_convert_mpzlong

Merge pull request #529 from fplll/fix_convert_mpzlong #258

Workflow file for this run

name: Distcheck
on:
push:
pull_request:
env:
MAX_ENUM_DIM: 64
MAX_PARALLEL_ENUM_DIM: 20
JOBS: 2
jobs:
linux:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v4
- name: Install prerequisites
run: |
sudo DEBIAN_FRONTEND=noninteractive apt-get update
sudo DEBIAN_FRONTEND=noninteractive apt-get install autoconf automake libtool libgmp-dev libmpfr-dev libqd-dev
- name: Configure
run: |
./autogen.sh
./configure --disable-static --with-max-enum-dim=$MAX_ENUM_DIM \
--with-max-parallel-enum-dim=$MAX_PARALLEL_ENUM_DIM
- name: Distcheck
run: make -j $JOBS distcheck DISTCHECK_CONFIGURE_FLAGS="--disable-static --with-max-enum-dim=$MAX_ENUM_DIM --with-max-parallel-enum-dim=$MAX_PARALLEL_ENUM_DIM"