mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-10 05:10:05 +00:00
Remove migrated build configs
This commit is contained in:
parent
689081d832
commit
cba5970cd8
23
.github/workflows/doc.yml
vendored
Normal file
23
.github/workflows/doc.yml
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
name: doc
|
||||||
|
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-18.04
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Create Build Environment
|
||||||
|
run: |
|
||||||
|
sudo apt install doxygen
|
||||||
|
cmake -E make_directory ${{runner.workspace}}/build
|
||||||
|
|
||||||
|
- name: Configure
|
||||||
|
working-directory: ${{runner.workspace}}/build
|
||||||
|
run: cmake -DCMAKE_BUILD_TYPE=${{matrix.build_type}} $GITHUB_WORKSPACE
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
working-directory: ${{runner.workspace}}/build
|
||||||
|
run: cmake --build . --config ${{matrix.build_type}}
|
16
.github/workflows/linux.yml
vendored
16
.github/workflows/linux.yml
vendored
@ -9,23 +9,27 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
cxx: [g++-4.8, g++-8, g++-10, clang++]
|
cxx: [g++-4.8, g++-8, g++-10, clang++]
|
||||||
build_type: [Debug, Release]
|
build_type: [Debug, Release]
|
||||||
|
include:
|
||||||
|
- cxx: clang++
|
||||||
|
build_type: Debug
|
||||||
|
fuzz: -DFMT_FUZZ=ON -DFMT_FUZZ_LINKMAIN=ON
|
||||||
|
- cxx: g++-4.8
|
||||||
|
install: sudo apt install g++-4.8
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Install GCC
|
|
||||||
if: matrix.cxx == 'g++-4.8'
|
|
||||||
run: sudo apt install g++-4.8
|
|
||||||
|
|
||||||
- name: Create Build Environment
|
- name: Create Build Environment
|
||||||
run: cmake -E make_directory ${{runner.workspace}}/build
|
run: |
|
||||||
|
${{matrix.install}}
|
||||||
|
cmake -E make_directory ${{runner.workspace}}/build
|
||||||
|
|
||||||
- name: Configure
|
- name: Configure
|
||||||
working-directory: ${{runner.workspace}}/build
|
working-directory: ${{runner.workspace}}/build
|
||||||
env:
|
env:
|
||||||
CXX: ${{matrix.cxx}}
|
CXX: ${{matrix.cxx}}
|
||||||
run: |
|
run: |
|
||||||
cmake -DCMAKE_BUILD_TYPE=${{matrix.build_type}} \
|
cmake -DCMAKE_BUILD_TYPE=${{matrix.build_type}} ${{matrix.fuzz}} \
|
||||||
-DFMT_DOC=OFF -DFMT_PEDANTIC=ON -DFMT_WERROR=ON $GITHUB_WORKSPACE
|
-DFMT_DOC=OFF -DFMT_PEDANTIC=ON -DFMT_WERROR=ON $GITHUB_WORKSPACE
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
|
78
.travis.yml
78
.travis.yml
@ -16,86 +16,8 @@ env:
|
|||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
# Documentation
|
|
||||||
- env: BUILD=Doc
|
- env: BUILD=Doc
|
||||||
sudo: required
|
sudo: required
|
||||||
# g++ 6 on Linux with C++14
|
|
||||||
- env: COMPILER=g++-6 BUILD=Debug STANDARD=14
|
|
||||||
compiler: gcc
|
|
||||||
addons:
|
|
||||||
apt:
|
|
||||||
update: true
|
|
||||||
sources:
|
|
||||||
- ubuntu-toolchain-r-test
|
|
||||||
packages:
|
|
||||||
- g++-6
|
|
||||||
- env: COMPILER=g++-6 BUILD=Release STANDARD=14
|
|
||||||
compiler: gcc
|
|
||||||
addons:
|
|
||||||
apt:
|
|
||||||
update: true
|
|
||||||
sources:
|
|
||||||
- ubuntu-toolchain-r-test
|
|
||||||
packages:
|
|
||||||
- g++-6
|
|
||||||
# g++ 8 on Linux with C++17
|
|
||||||
- env: COMPILER=g++-8 BUILD=Debug STANDARD=17
|
|
||||||
compiler: gcc
|
|
||||||
addons:
|
|
||||||
apt:
|
|
||||||
update: true
|
|
||||||
sources:
|
|
||||||
- ubuntu-toolchain-r-test
|
|
||||||
packages:
|
|
||||||
- g++-8
|
|
||||||
- env: COMPILER=g++-8 BUILD=Release STANDARD=17
|
|
||||||
compiler: gcc
|
|
||||||
addons:
|
|
||||||
apt:
|
|
||||||
update: true
|
|
||||||
sources:
|
|
||||||
- ubuntu-toolchain-r-test
|
|
||||||
packages:
|
|
||||||
- g++-8
|
|
||||||
|
|
||||||
# Apple clang on OS X with C++14
|
|
||||||
- env: BUILD=Debug STANDARD=14
|
|
||||||
compiler: clang
|
|
||||||
os: osx
|
|
||||||
- env: BUILD=Release STANDARD=14
|
|
||||||
compiler: clang
|
|
||||||
os: osx
|
|
||||||
# clang 6.0 on Linux with C++14 (builds the fuzzers as well)
|
|
||||||
- env: COMPILER=clang++-6.0 BUILD=Debug STANDARD=14 ENABLE_FUZZING=1
|
|
||||||
compiler: clang
|
|
||||||
addons:
|
|
||||||
apt:
|
|
||||||
update: true
|
|
||||||
packages:
|
|
||||||
- clang-6.0
|
|
||||||
sources:
|
|
||||||
- ubuntu-toolchain-r-test
|
|
||||||
- llvm-toolchain-trusty
|
|
||||||
- llvm-toolchain-trusty-6.0
|
|
||||||
# clang 4.0 on Linux with C++14
|
|
||||||
- env: COMPILER=clang++-4.0 BUILD=Debug STANDARD=11
|
|
||||||
compiler: clang
|
|
||||||
addons:
|
|
||||||
apt:
|
|
||||||
update: true
|
|
||||||
packages:
|
|
||||||
- clang-4.0
|
|
||||||
sources:
|
|
||||||
- ubuntu-toolchain-r-test
|
|
||||||
- llvm-toolchain-trusty
|
|
||||||
- llvm-toolchain-trusty-4.0
|
|
||||||
# g++ 4.8 on Linux with C++11
|
|
||||||
- env: COMPILER=g++-4.8 BUILD=Debug STANDARD=11
|
|
||||||
compiler: gcc
|
|
||||||
|
|
||||||
before_script:
|
|
||||||
- if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then export CXX=${COMPILER}; fi
|
|
||||||
- if [[ "${BUILD}" != "Doc" ]]; then ${CXX} --version; fi
|
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- support/travis-build.py
|
- support/travis-build.py
|
||||||
|
Loading…
Reference in New Issue
Block a user