mirror of
https://github.com/wolfcw/libfaketime.git
synced 2026-05-17 00:26:16 +03:00
22 lines
434 B
YAML
22 lines
434 B
YAML
language: c
|
|
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
arch: amd64
|
|
compiler: gcc
|
|
- os: linux
|
|
arch: ppc64le
|
|
compiler: gcc
|
|
- os: osx
|
|
osx_image: xcode11
|
|
|
|
script:
|
|
- cd ${TRAVIS_BUILD_DIR}
|
|
- if [ "$TRAVIS_ARCH" = ppc64le ]; then
|
|
FAKETIME_COMPILE_CFLAGS="-DFORCE_MONOTONIC_FIX -DFORCE_PTHREAD_NONVER" make;
|
|
else
|
|
FAKETIME_COMPILE_CFLAGS="-DFORCE_MONOTONIC_FIX" make;
|
|
fi
|
|
- make test
|