2019-02-26 03:33:01 +08:00
|
|
|
language: cpp
|
2019-02-23 02:11:45 +08:00
|
|
|
sudo: false
|
2019-02-23 02:22:26 +08:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
packages:
|
|
|
|
- gcc-7
|
|
|
|
- g++-7
|
2019-08-02 04:09:26 +08:00
|
|
|
- clang-format
|
|
|
|
- python
|
2019-02-23 02:11:45 +08:00
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
|
2019-02-23 02:22:26 +08:00
|
|
|
script:
|
|
|
|
- export CXX=g++-7
|
|
|
|
- export CC=gcc-7
|
2019-02-26 03:33:01 +08:00
|
|
|
- make
|
2019-02-23 02:22:26 +08:00
|
|
|
- make test
|
2019-07-27 01:53:53 +08:00
|
|
|
- make everything
|
2019-07-30 21:10:40 +08:00
|
|
|
- make amalgamate
|
2019-04-25 05:35:15 +08:00
|
|
|
- make clean
|
|
|
|
- make SANITIZEGOLD=1 test
|
2019-07-05 05:19:05 +08:00
|
|
|
- make clean
|
|
|
|
- ARCHFLAGS="-march=nehalem" make
|
|
|
|
- ARCHFLAGS="-march=nehalem" make test
|
2019-07-27 01:53:53 +08:00
|
|
|
- ARCHFLAGS="-march=nehalem" make everything
|
2019-08-02 04:09:26 +08:00
|
|
|
- ./style/run-clang-format.py -r include/ benchmark/ src/ tests/
|
2019-07-27 01:53:53 +08:00
|
|
|
|