libxlsxwriter/.travis.yml
Evan Miller b62653f382 Add image buffers without a temporary file
Use fmemopen to create an in-memory FILE for reading in image
attributes. This avoids creating a separate temporary file for every
image added to the worksheet.

Passing NULL as the first argument creates a buffer managed by fmemopen.
According to the system documentation, fclose will free the buffer, so
no further changes are needed.

fmemopen is defined by POSIX.1-2008, and on some platforms requires
_POSIX_C_SOURCE set to 200809L or greater. This is conditionally set in
the file (src/worksheet.c) where fmemopen is used.

This change includes a new USE_FMEMOPEN option for both CMake and make,
following the tradition set by USE_STANDARD_TMPFILE etc. This new option
is enabled on Travis.

See #287 #288
2020-05-08 13:48:12 +01:00

40 lines
887 B
YAML

language: c
dist: xenial
compiler:
- clang
- gcc
env:
- CFLAGS='-Werror'
- NO_VALGRIND=1 USE_STANDARD_TMPFILE=1 CFLAGS='-Werror'
- NO_VALGRIND=1 CFLAGS='-Werror -m32'
- NO_VALGRIND=1 USE_SYSTEM_MINIZIP=1 CFLAGS='-Werror'
- NO_VALGRIND=1 USE_DOUBLE_FUNCTION=1 CFLAGS='-Werror'
- NO_VALGRIND=1 USE_NO_MD5=1 CFLAGS='-Werror'
- NO_VALGRIND=1 USE_FMEMOPEN=1 CFLAGS='-Werror'
addons:
apt:
update: true
packages:
- gcc-multilib
- libminizip-dev
- valgrind
- zlib1g-dev
- zlib1g-dev:i386
before_install:
- sudo pip install pytest
script:
- make V=1
- make test_functional V=1
- make test_unit V=1
- make examples V=1
- make test_valgrind V=1
- sudo make install V=1
- sudo make uninstall V=1
- make test_cmake V=1
- make clean V=1