mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
14 lines
286 B
Bash
Executable File
14 lines
286 B
Bash
Executable File
#!/bin/bash -le
|
|
|
|
mkdir -p "$HOME"/.local/share
|
|
|
|
mkdir build
|
|
cd build
|
|
export TZ="America/Los_Angeles"
|
|
export PATH="$PATH:/usr/bin/core_perl"
|
|
cmake /github/workspace -DWITH_PYTHON=ON -DCMAKE_BUILD_TYPE=debug -G Ninja
|
|
ninja
|
|
ninja check
|
|
|
|
cp Testing/Temporary/LastTest.log /github/workspace
|