libx52/.github/scripts/build-and-test.sh

12 lines
141 B
Bash
Executable File

#!/bin/bash
# Run the build and tests
set -e
./autogen.sh
mkdir build
cd build
../configure
make -j V=0
make -j check V=0
make -j distcheck