diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 1cf5c8c..0000000 --- a/.travis.yml +++ /dev/null @@ -1,161 +0,0 @@ -os: linux -dist: trusty -sudo: false -group: travis_latest -language: c++ -cache: ccache - -addons: - apt: - sources: &apt_sources - - ubuntu-toolchain-r-test - - llvm-toolchain-precise-3.5 - - llvm-toolchain-precise-3.6 - - llvm-toolchain-precise-3.7 - - llvm-toolchain-precise-3.8 - - llvm-toolchain-trusty-3.9 - - llvm-toolchain-trusty-4.0 - - llvm-toolchain-trusty-5.0 - - llvm-toolchain-trusty-6.0 - -matrix: - include: - - os: linux - env: COMPILER=g++-4.8 - compiler: gcc - addons: &gcc4_8 - apt: - packages: ["g++-4.8", "python3-pip", "lcov"] - sources: *apt_sources - - - os: linux - env: COMPILER=g++-4.9 - compiler: gcc - addons: &gcc4_9 - apt: - packages: ["g++-4.9", "python3-pip", "lcov"] - sources: *apt_sources - - - os: linux - env: COMPILER=g++-5 - compiler: gcc - addons: &gcc5 - apt: - packages: ["g++-5", "python3-pip", "lcov"] - sources: *apt_sources - - - os: linux - env: COMPILER=g++-6 - compiler: gcc - addons: &gcc6 - apt: - packages: ["g++-6", "python3-pip", "lcov"] - sources: *apt_sources - - - os: linux - env: COMPILER=g++-7 - compiler: gcc - addons: &gcc7 - apt: - packages: ["g++-7", "python3-pip", "lcov"] - sources: *apt_sources - - - os: linux - env: COMPILER=g++-8 - compiler: gcc - addons: &gcc8 - apt: - packages: ["g++-8", "python3-pip", "lcov"] - sources: *apt_sources - - - os: linux - env: COMPILER=clang++-3.5 - compiler: clang - addons: &clang3_5 - apt: - packages: ["clang-3.5", "g++-7", "python3-pip", "lcov"] - sources: *apt_sources - - - os: linux - env: COMPILER=clang++-3.6 - compiler: clang - addons: &clang3_6 - apt: - packages: ["clang-3.6", "g++-7", "python3-pip", "lcov"] - sources: *apt_sources - - - os: linux - env: COMPILER=clang++-3.7 - compiler: clang - addons: &clang3-7 - apt: - packages: ["clang-3.7", "g++-7", "python3-pip", "lcov"] - sources: *apt_sources - - - os: linux - env: COMPILER=clang++-3.8 - compiler: clang - addons: &clang3_8 - apt: - packages: ["clang-3.8", "g++-7", "python3-pip", "lcov"] - sources: *apt_sources - - - os: linux - env: COMPILER=clang++-3.9 - compiler: clang - addons: &clang3_9 - apt: - packages: ["clang-3.9", "g++-7", "python3-pip", "lcov"] - sources: *apt_sources - - - os: linux - env: COMPILER=clang++-4.0 - compiler: clang - addons: &clang4_0 - apt: - packages: ["clang-4.0", "g++-7", "python3-pip", "lcov"] - sources: *apt_sources - - - os: linux - env: COMPILER=clang++-5.0 - compiler: clang - addons: &clang5_0 - apt: - packages: ["clang-5.0", "g++-7", "python3-pip", "lcov"] - sources: *apt_sources - - - os: linux - env: COMPILER=clang++-6.0 - compiler: clang - addons: &clang6_0 - apt: - packages: ["clang-6.0", "g++-7", "python3-pip", "lcov"] - sources: *apt_sources - - - os: osx - osx_image: xcode7.3 - compiler: clang - env: COMPILER='clang++' - - - os: osx - osx_image: xcode8 - compiler: clang - env: COMPILER='clang++' - - - os: osx - osx_image: xcode9 - compiler: clang - env: COMPILER='clang++' - - - os: osx - osx_image: xcode10 - compiler: clang - env: COMPILER='clang++' - -script: - - export CXX=${COMPILER} - - JOBS=2 # Travis machines have 2 cores. - - mkdir build && cd build - - cmake -G "Unix Makefiles" -DBIT_LITE_OPT_SELECT_NONSTD=ON -DBIT_LITE_OPT_BUILD_TESTS=ON -DBIT_LITE_OPT_BUILD_EXAMPLES=OFF .. - - cmake --build . -- -j${JOBS} - - ctest --output-on-failure -j${JOBS} diff --git a/README.md b/README.md index ed2430a..2e89168 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # bit-lite - C++20 bit operations for C++98 and later in a single-file header-only library. -[![Language](https://img.shields.io/badge/C%2B%2B-98/11/14/17/20-blue.svg)](https://en.wikipedia.org/wiki/C%2B%2B#Standardization) [![License](https://img.shields.io/badge/license-BSL-blue.svg)](https://opensource.org/licenses/BSL-1.0) [![Build Status](https://github.com/martinmoene/bit-lite/actions/workflows/ci.yml/badge.svg)](https://github.com/martinmoene/bit-lite/actions/workflows/ci.yml) [![Build Status](https://travis-ci.org/martinmoene/bit-lite.svg?branch=master)](https://travis-ci.org/martinmoene/bit-lite) [![Build status](https://ci.appveyor.com/api/projects/status/gpmw4gt271itoy2n?svg=true)](https://ci.appveyor.com/project/martinmoene/bit-lite) [![Version](https://badge.fury.io/gh/martinmoene%2Fbit-lite.svg)](https://github.com/martinmoene/bit-lite/releases) [![download](https://img.shields.io/badge/latest-download-blue.svg)](https://raw.githubusercontent.com/martinmoene/bit-lite/master/include/nonstd/bit.hpp) [![Conan](https://img.shields.io/badge/on-conan-blue.svg)](https://conan.io/center/bit-lite) [![Try it online](https://img.shields.io/badge/on-wandbox-blue.svg)](https://wandbox.org/permlink/ZwnY4c9dZUAynUac) [![Try it on godbolt online](https://img.shields.io/badge/on-godbolt-blue.svg)](https://godbolt.org/z/1IPvn7) +[![Language](https://img.shields.io/badge/C%2B%2B-98/11/14/17/20-blue.svg)](https://en.wikipedia.org/wiki/C%2B%2B#Standardization) [![License](https://img.shields.io/badge/license-BSL-blue.svg)](https://opensource.org/licenses/BSL-1.0) [![Build Status](https://github.com/martinmoene/bit-lite/actions/workflows/ci.yml/badge.svg)](https://github.com/martinmoene/bit-lite/actions/workflows/ci.yml) [![Build status](https://ci.appveyor.com/api/projects/status/gpmw4gt271itoy2n?svg=true)](https://ci.appveyor.com/project/martinmoene/bit-lite) [![Version](https://badge.fury.io/gh/martinmoene%2Fbit-lite.svg)](https://github.com/martinmoene/bit-lite/releases) [![download](https://img.shields.io/badge/latest-download-blue.svg)](https://raw.githubusercontent.com/martinmoene/bit-lite/master/include/nonstd/bit.hpp) [![Conan](https://img.shields.io/badge/on-conan-blue.svg)](https://conan.io/center/bit-lite) [![Try it online](https://img.shields.io/badge/on-wandbox-blue.svg)](https://wandbox.org/permlink/ZwnY4c9dZUAynUac) [![Try it on godbolt online](https://img.shields.io/badge/on-godbolt-blue.svg)](https://godbolt.org/z/1IPvn7) **Contents**