forked from geany/geany
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from geany/master
Update from geany/geany
- Loading branch information
Showing
512 changed files
with
112,624 additions
and
98,522 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
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# we use both C and C++, so advertize C++ | ||
language: cpp | ||
compiler: | ||
- gcc | ||
env: | ||
- GTK3=no | ||
- GTK3=yes | ||
- GTK3=no MINGW=yes | ||
- GTK3=yes MINGW=yes | ||
before_install: | ||
- sudo apt-get update -qq | ||
install: | ||
- sudo apt-get install -y intltool libtool | ||
- test -n "$MINGW" || sudo apt-get install -y libgtk2.0-dev libgtk-3-dev | ||
- test -z "$MINGW" || sudo apt-get install -y mingw-w64-tools g++-mingw-w64-i686 gcc-mingw-w64-i686 binutils-mingw-w64-i686 | ||
- sudo apt-get install -y python-docutils rst2pdf | ||
# try not to install doxygen-latex because we don't need it and it's huge | ||
- sudo apt-get install -y --no-install-recommends doxygen | ||
before_script: | ||
- export CFLAGS="-g -O2 -Werror=pointer-arith -Werror=aggregate-return -Werror=implicit-function-declaration" | ||
script: | ||
- NOCONFIGURE=1 ./autogen.sh | ||
- > | ||
if [ -n "$MINGW" ]; then | ||
arg=-2; [ "$GTK3" = yes ] && arg=-3; | ||
unset CC CXX; | ||
sh ./scripts/cross-build-mingw.sh $arg; | ||
else | ||
mkdir _build && | ||
cd _build && | ||
../configure --enable-gtk3=$GTK3 && | ||
make -j2 && | ||
make -j2 check; | ||
fi |
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
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
Oops, something went wrong.