1 Star 0 Fork 2

Ivanmax/MyTinySTL

forked from zhaoyunfei1/MyTinySTL 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.travis.yml 1.30 KB
一键复制 编辑 原始数据 按行查看 历史
Alinshans 提交于 2017-11-17 14:48 . Remove the test: gcc on osx.
language: cpp
# ubuntu 14.04 version
sudo: required
dist: trusty
matrix:
include:
- os: linux
compiler: gcc
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-5']
env:
- MATRIX_EVAL="CC=gcc-5 && CXX=g++-5"
- os: linux
compiler: gcc
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-6']
env:
- MATRIX_EVAL="CC=gcc-6 && CXX=g++-6"
- os: linux
compiler: gcc
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-7']
env:
- MATRIX_EVAL="CC=gcc-7 && CXX=g++-7"
- os: osx
osx_image: xcode5
env:
- MATRIX_EVAL="CC=clang && CXX=clang++"
- os: osx
osx_image: xcode6
env:
- MATRIX_EVAL="CC=clang && CXX=clang++"
- os: osx
osx_image: xcode7
env:
- MATRIX_EVAL="CC=clang && CXX=clang++"
- os: osx
osx_image: xcode8
env:
- MATRIX_EVAL="CC=clang && CXX=clang++"
before_script:
- eval "${MATRIX_EVAL}"
- $CXX --version
script:
- mkdir build && cd ./build
- cmake ..
- make
- cd ../bin && ./stltest
branches:
only:
- master
notifications:
email: false
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Ivanmax/MyTinySTL.git
git@gitee.com:Ivanmax/MyTinySTL.git
Ivanmax
MyTinySTL
MyTinySTL
master

搜索帮助