Skip to content

configure.ac: bump version to 2.9.1 #22

configure.ac: bump version to 2.9.1

configure.ac: bump version to 2.9.1 #22

Workflow file for this run

name: C/C++ CI
on: [ push, pull_request ]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
include:
- os: ubuntu-latest
env:
ASAN: "yes"
shell: bash
- os: macos-latest
shell: bash
runs-on: ${{ matrix.os }}
defaults:
run:
shell: ${{ matrix.shell }} {0}
steps:
- uses: actions/checkout@v4
with: { submodules: true }
- name: Install dependencies (Ubuntu)
if: ${{ matrix.os == 'ubuntu-latest' }}
run: sudo apt-get -y install gengetopt help2man
- name: Install dependencies (macOS)
if: ${{ matrix.os == 'macos-latest' }}
run: |
brew install coreutils automake gengetopt help2man
echo "$(brew --prefix m4)/bin" >> $GITHUB_PATH
- name: Build
run: ./bootstrap && ./configure && make V=1 && make distcheck