ci: temporary suppress gcc/clang

This commit is contained in:
ToruNiina
2024-07-06 02:29:35 +09:00
parent b63668c0dc
commit 2912407d33

View File

@@ -3,167 +3,167 @@ name: build
on: [push, pull_request] on: [push, pull_request]
jobs: jobs:
build-linux-gcc: # build-linux-gcc:
runs-on: Ubuntu-22.04 # runs-on: Ubuntu-22.04
strategy: # strategy:
matrix: # matrix:
compiler: ['g++-12', 'g++-11', 'g++-10', 'g++-9'] # compiler: ['g++-12', 'g++-11', 'g++-10', 'g++-9']
standard: ['11', '14', '17', '20'] # standard: ['11', '14', '17', '20']
precompile: ['ON', 'OFF'] # precompile: ['ON', 'OFF']
steps: # steps:
- name: Checkout # - name: Checkout
uses: actions/checkout@v4 # uses: actions/checkout@v4
with: # with:
submodules: true # submodules: true
- name: Install # - name: Install
run: | # run: |
sudo apt-get update # sudo apt-get update
sudo apt-get install language-pack-fr # test serializer w/ locale # sudo apt-get install language-pack-fr # test serializer w/ locale
sudo apt-get install ${{ matrix.compiler }} # sudo apt-get install ${{ matrix.compiler }}
- name: Configure # - name: Configure
run: | # run: |
cmake -B build/ -DCMAKE_CXX_COMPILER=${{ matrix.compiler }} -DCMAKE_CXX_STANDARD=${{ matrix.standard }} -DTOML11_BUILD_TESTS=ON -DTOML11_PRECOMPILE=${{ matrix.precompile }} # cmake -B build/ -DCMAKE_CXX_COMPILER=${{ matrix.compiler }} -DCMAKE_CXX_STANDARD=${{ matrix.standard }} -DTOML11_BUILD_TESTS=ON -DTOML11_PRECOMPILE=${{ matrix.precompile }}
- name: Build # - name: Build
run: | # run: |
cmake --build build/ # cmake --build build/
- name: Test # - name: Test
run: | # run: |
ctest --output-on-failure --test-dir build/ # ctest --output-on-failure --test-dir build/
build-linux-clang: # build-linux-clang:
runs-on: Ubuntu-22.04 # runs-on: Ubuntu-22.04
strategy: # strategy:
matrix: # matrix:
compiler: ['15', '14', '13', '12', '11'] # compiler: ['15', '14', '13', '12', '11']
standard: ['11', '14', '17', '20'] # standard: ['11', '14', '17', '20']
precompile: ['ON', 'OFF'] # precompile: ['ON', 'OFF']
exclude: # exclude:
- {compiler: '14', standard: '20'} # to avoid using gcc-13 libstdc++ # - {compiler: '14', standard: '20'} # to avoid using gcc-13 libstdc++
- {compiler: '13', standard: '20'} # with older clang # - {compiler: '13', standard: '20'} # with older clang
- {compiler: '12', standard: '20'} # - {compiler: '12', standard: '20'}
- {compiler: '11', standard: '20'} # - {compiler: '11', standard: '20'}
steps: # steps:
- name: Checkout # - name: Checkout
uses: actions/checkout@v4 # uses: actions/checkout@v4
with: # with:
submodules: true # submodules: true
- name: Install # - name: Install
run: | # run: |
sudo apt-get update # sudo apt-get update
sudo apt-get install language-pack-fr # test serializer w/ locale # sudo apt-get install language-pack-fr # test serializer w/ locale
sudo apt-get install clang-${{ matrix.compiler }} # sudo apt-get install clang-${{ matrix.compiler }}
- name: Configure # - name: Configure
run: | # run: |
cmake -B build/ -DCMAKE_CXX_COMPILER=clang++-${{ matrix.compiler }} -DCMAKE_CXX_STANDARD=${{ matrix.standard }} -DTOML11_BUILD_TESTS=ON -DTOML11_PRECOMPILE=${{ matrix.precompile }} # cmake -B build/ -DCMAKE_CXX_COMPILER=clang++-${{ matrix.compiler }} -DCMAKE_CXX_STANDARD=${{ matrix.standard }} -DTOML11_BUILD_TESTS=ON -DTOML11_PRECOMPILE=${{ matrix.precompile }}
- name: Build # - name: Build
run: | # run: |
cmake --build build/ # cmake --build build/
- name: Test # - name: Test
run: | # run: |
ctest --output-on-failure --test-dir build/ # ctest --output-on-failure --test-dir build/
build-linux-old-gcc: # build-linux-old-gcc:
runs-on: Ubuntu-20.04 # runs-on: Ubuntu-20.04
strategy: # strategy:
matrix: # matrix:
compiler: ['g++-8', 'g++-7'] # compiler: ['g++-8', 'g++-7']
standard: ['11', '14', '17', '20'] # standard: ['11', '14', '17', '20']
precompile: ['ON', 'OFF'] # precompile: ['ON', 'OFF']
exclude: # exclude:
- {compiler: 'g++-7', standard: '20'} # - {compiler: 'g++-7', standard: '20'}
- {compiler: 'g++-8', standard: '17'} # - {compiler: 'g++-8', standard: '17'}
- {compiler: 'g++-8', standard: '20'} # - {compiler: 'g++-8', standard: '20'}
steps: # steps:
- name: Checkout # - name: Checkout
uses: actions/checkout@v4 # uses: actions/checkout@v4
with: # with:
submodules: true # submodules: true
- name: Install # - name: Install
run: | # run: |
sudo apt-get update # sudo apt-get update
sudo apt-get install language-pack-fr # test serializer w/ locale # sudo apt-get install language-pack-fr # test serializer w/ locale
sudo apt-get install ${{ matrix.compiler }} # sudo apt-get install ${{ matrix.compiler }}
- name: Configure # - name: Configure
run: | # run: |
cmake -B build/ -DCMAKE_CXX_COMPILER=${{ matrix.compiler }} -DCMAKE_CXX_STANDARD=${{ matrix.standard }} -DTOML11_BUILD_TESTS=ON -DTOML11_PRECOMPILE=${{ matrix.precompile }} # cmake -B build/ -DCMAKE_CXX_COMPILER=${{ matrix.compiler }} -DCMAKE_CXX_STANDARD=${{ matrix.standard }} -DTOML11_BUILD_TESTS=ON -DTOML11_PRECOMPILE=${{ matrix.precompile }}
- name: Build # - name: Build
run: | # run: |
cmake --build build/ # cmake --build build/
- name: Test # - name: Test
run: | # run: |
ctest --output-on-failure --test-dir build/ # ctest --output-on-failure --test-dir build/
build-linux-old-clang: # build-linux-old-clang:
runs-on: Ubuntu-20.04 # runs-on: Ubuntu-20.04
strategy: # strategy:
matrix: # matrix:
compiler: ['10', '9', '8', '7', '6.0'] # compiler: ['10', '9', '8', '7', '6.0']
standard: ['11', '14', '17', '20'] # standard: ['11', '14', '17', '20']
precompile: ['ON', 'OFF'] # precompile: ['ON', 'OFF']
exclude: # exclude:
- {compiler: '6.0', standard: '20'} # - {compiler: '6.0', standard: '20'}
- {compiler: '7', standard: '20'} # - {compiler: '7', standard: '20'}
- {compiler: '8', standard: '20'} # - {compiler: '8', standard: '20'}
- {compiler: '9', standard: '20'} # - {compiler: '9', standard: '20'}
steps: # steps:
- name: Checkout # - name: Checkout
uses: actions/checkout@v4 # uses: actions/checkout@v4
with: # with:
submodules: true # submodules: true
- name: Install # - name: Install
run: | # run: |
sudo apt-get update # sudo apt-get update
sudo apt-get install language-pack-fr # test serializer w/ locale # sudo apt-get install language-pack-fr # test serializer w/ locale
sudo apt-get install clang-${{ matrix.compiler }} # sudo apt-get install clang-${{ matrix.compiler }}
- name: Configure # - name: Configure
run: | # run: |
cmake -B build/ -DCMAKE_CXX_COMPILER=clang++-${{ matrix.compiler }} -DCMAKE_CXX_STANDARD=${{ matrix.standard }} -DTOML11_BUILD_TESTS=ON -DTOML11_PRECOMPILE=${{ matrix.precompile }} # cmake -B build/ -DCMAKE_CXX_COMPILER=clang++-${{ matrix.compiler }} -DCMAKE_CXX_STANDARD=${{ matrix.standard }} -DTOML11_BUILD_TESTS=ON -DTOML11_PRECOMPILE=${{ matrix.precompile }}
- name: Build # - name: Build
run: | # run: |
cmake --build build/ # cmake --build build/
- name: Test # - name: Test
run: | # run: |
ctest --output-on-failure --test-dir build/ # ctest --output-on-failure --test-dir build/
build-osx-13: # build-osx-13:
runs-on: macos-13 # runs-on: macos-13
strategy: # strategy:
matrix: # matrix:
standard: ['11', '14', '17', '20'] # standard: ['11', '14', '17', '20']
precompile: ['ON', 'OFF'] # precompile: ['ON', 'OFF']
steps: # steps:
- name: Checkout # - name: Checkout
uses: actions/checkout@v4 # uses: actions/checkout@v4
with: # with:
submodules: true # submodules: true
- name: Configure # - name: Configure
run: | # run: |
cmake -B build/ -DCMAKE_CXX_STANDARD=${{ matrix.standard }} -DTOML11_BUILD_TESTS=ON -DTOML11_PRECOMPILE=${{ matrix.precompile }} # cmake -B build/ -DCMAKE_CXX_STANDARD=${{ matrix.standard }} -DTOML11_BUILD_TESTS=ON -DTOML11_PRECOMPILE=${{ matrix.precompile }}
- name: Build # - name: Build
run: | # run: |
cmake --build build/ # cmake --build build/
- name: Test # - name: Test
run: | # run: |
ctest --output-on-failure --test-dir build/ # ctest --output-on-failure --test-dir build/
build-osx-12: # build-osx-12:
runs-on: macos-12 # runs-on: macos-12
strategy: # strategy:
matrix: # matrix:
standard: ['11', '14', '17', '20'] # standard: ['11', '14', '17', '20']
precompile: ['ON', 'OFF'] # precompile: ['ON', 'OFF']
steps: # steps:
- name: Checkout # - name: Checkout
uses: actions/checkout@v4 # uses: actions/checkout@v4
with: # with:
submodules: true # submodules: true
- name: Configure # - name: Configure
run: | # run: |
cmake -B build/ -DCMAKE_CXX_STANDARD=${{ matrix.standard }} -DTOML11_BUILD_TESTS=ON -DTOML11_PRECOMPILE=${{ matrix.precompile }} # cmake -B build/ -DCMAKE_CXX_STANDARD=${{ matrix.standard }} -DTOML11_BUILD_TESTS=ON -DTOML11_PRECOMPILE=${{ matrix.precompile }}
- name: Build # - name: Build
run: | # run: |
cmake --build build/ # cmake --build build/
- name: Test # - name: Test
run: | # run: |
ctest --output-on-failure --test-dir build/ # ctest --output-on-failure --test-dir build/
build-windows-msvc: build-windows-msvc:
runs-on: windows-2022 runs-on: windows-2022