Remove migrated build configs

This commit is contained in:
Victor Zverovich
2020-11-03 16:48:01 -08:00
parent 689081d832
commit cba5970cd8
3 changed files with 33 additions and 84 deletions

23
.github/workflows/doc.yml vendored Normal file
View 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}}

View File

@@ -9,23 +9,27 @@ jobs:
matrix:
cxx: [g++-4.8, g++-8, g++-10, clang++]
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:
- uses: actions/checkout@v2
- name: Install GCC
if: matrix.cxx == 'g++-4.8'
run: sudo apt install g++-4.8
- name: Create Build Environment
run: cmake -E make_directory ${{runner.workspace}}/build
run: |
${{matrix.install}}
cmake -E make_directory ${{runner.workspace}}/build
- name: Configure
working-directory: ${{runner.workspace}}/build
env:
CXX: ${{matrix.cxx}}
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
- name: Build