mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-20 11:48:30 -06:00
Currently, there is an ubuntu 14.04 and archlinux build and they both use cmake with ninja, cmake with make, and autotools to build. It should be straightforward to add another configuration. Travis checks out the correct branch of the source code for us, and we expose that source code to the docker container using a docker run "volume".
9 lines
194 B
Bash
9 lines
194 B
Bash
#!/bin/bash -e
|
|
|
|
# -e above so that if any command has an exit code != 0, this script will
|
|
# exit immediately.
|
|
|
|
export GTEST_ROOT=/gtest/googletest GMOCK_ROOT=/gtest/googlemock;
|
|
|
|
../commonbuild
|