Update m4 for https://github.com/indexdata/m4/pull/3 #54
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
# Build minimal yaz from source | |
name: Build minimal YAZ | |
on: [pull_request] | |
jobs: | |
build-minimal-yaz: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Update packages | |
run: sudo apt update | |
- name: Install required dependencies | |
run: > | |
sudo apt install autoconf automake libtool gcc make bison | |
tclsh xsltproc docbook docbook-xml docbook-xsl | |
- name: Run buildconf without xml, icu, ... | |
run: ./buildconf.sh | |
- name: Run configure without xml, icu, ... | |
run: > | |
CFLAGS="-g -Wall -std=c89 -D_POSIX_C_SOURCE=200112L" ./configure | |
--without-xml2 --without-icu --disable-tcpd --without-memcached --without-redis | |
- name: Run Make check | |
run: make -j4 check |