mirror of https://github.com/nirenjan/libx52.git
21 lines
435 B
Bash
Executable File
21 lines
435 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
|
|
|
|
# Print bugreport output
|
|
./x52bugreport
|
|
|
|
# Make sure that there are no changes to the source code
|
|
# This may happen if the source have changed with differences to the
|
|
# translation files and templates. Enabling this will allow us to catch
|
|
# missing/modified translations.
|
|
git diff --exit-code
|