Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
31 changes: 30 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,30 @@
.pc/
Makefile.in
Makefile
INSTALL
aclocal.m4
autom4te.cache/
ChangeLog
compile
config.guess
config.h.in
config.h
config.log
config.lt
config.status
config.sub
configure
configure~
depcomp
gmime.spec
gmime*.pc
gtk-doc.make
iconv-detect.h
install-sh
libtool
ltmain.sh
missing
stamp-h1
*.tar.xz
*.sha256sum
.DS_Store
update-copyright.sh
23 changes: 23 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
dist: trusty
arch:
- amd64
- ppc64le
language: c
compiler:
- gcc
sudo: required
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y automake gtk-doc-tools gnome-doc-utils libgpgme11 libgpgme11-dev gpgsm lcov libidn2-0-dev
install:
- pip install --user cpp-coveralls
- gem install coveralls-lcov
- lcov --version
- /usr/bin/gpgme-config --version
before_script:
- cd ${TRAVIS_BUILD_DIR}
- lcov --directory . --zerocounters
script:
- ./autogen.sh --enable-coverage && make && make check
after_success:
- coveralls --exclude examples --exclude gmime/charset-map.c --exclude gmime/gen-table.c --exclude tests --gcov-options '\-lp'
Empty file removed ChangeLog
Empty file.
5 changes: 5 additions & 0 deletions HACKING
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Rules for commits on the gmime module
=====================================

Please try to conform to the same coding conventions used within
this module (such as tab-width, brace location, and white-space).
Loading
Loading