configure.ac: bump version to 2.9.1 #22
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: 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 |