mirror of https://github.com/Gnucash/gnucash
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
379 B
16 lines
379 B
#!/bin/bash -le
|
|
|
|
mkdir -p "$HOME"/.local/share
|
|
|
|
mkdir build
|
|
cd build
|
|
export TZ="America/Los_Angeles"
|
|
export PATH="$PATH:/usr/bin/core_perl"
|
|
export CTEST_OUTPUT_ON_FAILURE=On
|
|
git config --global --add safe.directory /github/workspace
|
|
cmake /github/workspace -DWITH_PYTHON=ON -DCMAKE_BUILD_TYPE=debug -G Ninja
|
|
ninja
|
|
ninja check
|
|
|
|
cp Testing/Temporary/LastTest.log /github/workspace
|