forked from libgeos/geos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Flip bessies to cmake build test. Closes libgeos#939. Exclude exes fr…
…om commit.
- Loading branch information
Showing
3 changed files
with
42 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ geos_revision.h | |
*.la | ||
*.log | ||
*.trs | ||
*.exe | ||
macros/libtool.m4 | ||
macros/ltoptions.m4 | ||
macros/ltsugar.m4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/bin/bash -e | ||
# | ||
# FreeBSD 64 (bessie) CI script runner for GEOS | ||
# FreeBSD 32 (bessie32) CI script runner for GEOS | ||
# | ||
# Copyright (c) 2018 Regina Obe <[email protected]> | ||
# | ||
|
@@ -9,7 +9,23 @@ | |
# by the Free Software Foundation. | ||
# See the COPYING file for more information. | ||
# | ||
sh autogen.sh | ||
./configure | ||
make | ||
make check | ||
# auto tools | ||
if false; then | ||
sh autogen.sh | ||
./configure | ||
make | ||
make check | ||
fi | ||
|
||
|
||
# cmake | ||
if true; then | ||
rm -rf build | ||
mkdir -p build | ||
cd build | ||
cmake ../ | ||
make | ||
[ -f CMakeCache.txt ] && \ | ||
ctest --output-on-failure . || \ | ||
make check | ||
fi |