7 Star 6 Fork 1

LinRaise/Log4cplus

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.travis.yml 2.65 KB
一键复制 编辑 原始数据 按行查看 历史
Vaclav Haisman 提交于 2018-09-15 23:34 +08:00 . .travis.yml: Try to fix Clang builds.
language: cpp
sudo: false
dist: trusty
compiler:
- gcc
- clang
addons: &addons
apt:
sources: &sources
- ubuntu-toolchain-r-test
- llvm-toolchain-trusty-3.9
- ubuntu-sdk-team
packages: &packages
- g++-7
- gcc-7
- libstdc++-5-dev
- swig
- python
# - qtbase5-dev
env:
# - PARAM_THREADS="--enable-threads --with-python --with-qt5 --with-working-c-locale --with-wchar_t-support --enable-unit-tests"
# CXXFLAGS="" SWIG_FLAGS="" QT=qtbase5-dev
# - PARAM_THREADS="--enable-threads --with-python --with-qt5 --with-working-locale --with-wchar_t-support --enable-unit-tests"
# CXXFLAGS="" SWIG_FLAGS="" QT=qtbase5-dev
# - PARAM_THREADS="--disable-threads --with-python --with-qt5 --with-working-locale --with-wchar_t-support --enable-unit-tests"
# CXXFLAGS="" SWIG_FLAGS="" QT=qtbase5-dev
# - PARAM_THREADS="--enable-threads --with-python --with-qt5 --with-iconv --with-wchar_t-support --enable-unit-tests"
# CXXFLAGS="" SWIG_FLAGS="" QT=qtbase5-dev
# - PARAM_THREADS="--disable-threads --with-python --with-qt5 --with-iconv --with-wchar_t-support --enable-unit-tests"
# CXXFLAGS="" SWIG_FLAGS="" QT=qtbase5-dev
- PARAM_THREADS="--enable-threads --with-python --with-qt --with-working-c-locale --with-wchar_t-support --enable-unit-tests"
CXXFLAGS="" SWIG_FLAGS=""
- PARAM_THREADS="--enable-threads --with-python --with-qt --with-working-locale --with-wchar_t-support --enable-unit-tests"
CXXFLAGS="" SWIG_FLAGS=""
- PARAM_THREADS="--disable-threads --with-python --with-qt --with-working-locale --with-wchar_t-support --enable-unit-tests"
CXXFLAGS="" SWIG_FLAGS=""
- PARAM_THREADS="--enable-threads --with-python --with-qt --with-iconv --with-wchar_t-support --enable-unit-tests"
CXXFLAGS="" SWIG_FLAGS=""
- PARAM_THREADS="--disable-threads --with-python --with-qt --with-iconv --with-wchar_t-support --enable-unit-tests"
CXXFLAGS="" SWIG_FLAGS=""
before_install:
- lsb_release -a
- git submodule update --init --recursive
before_script:
- |
case "$CXX" in #(
g++*) CXX=g++-7 #(
;;
clang++*) CXX=clang++
;;
esac
- |
case "$CC" in #(
gcc*) CC=gcc-7 #(
;;
clang*) CC=clang
;;
esac
- export CXX CC
- sh ./scripts/fix-timestamps.sh
- mkdir objdir
- cd objdir
script: ../configure $PARAM_THREADS
CPPFLAGS="-U_GLIBCXX_USE_FLOAT128"
CXXFLAGS="$CXXFLAGS"
SWIG_FLAGS="$SWIG_FLAGS"
&& make
&& make check
after_failure:
- cat config.log
- cat tests/testsuite.log
branches:
except:
- gh-pages
notifications:
recipients:
email:
on_success: always
on_failure: always
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/LinRaise/Log4cplus.git
[email protected]:LinRaise/Log4cplus.git
LinRaise
Log4cplus
Log4cplus
master

搜索帮助