This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
deb-goldedplus/.travis.yml

16 lines
383 B
YAML
Raw Normal View History

language: cpp
2018-07-02 18:08:00 +00:00
os:
- linux
- osx
branches:
only:
- master
2018-07-02 18:08:00 +00:00
compiler:
- gcc
- clang
before_install:
- cp golded3/mygolded.__h golded3/mygolded.h
script:
2018-07-14 18:46:58 +00:00
- if [[ "$CXX" == "g++" ]]; then CPPFLAGS="-Wno-write-strings -Wno-unused-result" make; fi
- if [[ "$CXX" == "clang++" ]]; then CPPFLAGS="-Wno-keyword-macro -Wno-c++11-compat-deprecated-writable-strings" make; fi