mirror of
https://github.com/ToruNiina/toml11.git
synced 2025-09-17 09:08:08 +08:00
ci: use new versions of ubuntu
and new versions of compilers
This commit is contained in:
57
.github/workflows/main.yml
vendored
57
.github/workflows/main.yml
vendored
@@ -4,10 +4,10 @@ on: [push, pull_request]
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-linux-gcc:
|
build-linux-gcc:
|
||||||
runs-on: Ubuntu-22.04
|
runs-on: Ubuntu-24.04
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
compiler: ['g++-12', 'g++-11', 'g++-10', 'g++-9']
|
compiler: ['g++-14', 'g++-13', 'g++-12', 'g++-11', 'g++-10', 'g++-9']
|
||||||
standard: ['11', '14', '17', '20']
|
standard: ['11', '14', '17', '20']
|
||||||
precompile: ['ON', 'OFF']
|
precompile: ['ON', 'OFF']
|
||||||
betafeature: ['ON', 'OFF']
|
betafeature: ['ON', 'OFF']
|
||||||
@@ -35,10 +35,10 @@ jobs:
|
|||||||
ctest --output-on-failure --test-dir build/
|
ctest --output-on-failure --test-dir build/
|
||||||
|
|
||||||
build-linux-gcc-sanitizers:
|
build-linux-gcc-sanitizers:
|
||||||
runs-on: Ubuntu-22.04
|
runs-on: Ubuntu-24.04
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
compiler: ['g++-12']
|
compiler: ['g++-13']
|
||||||
standard: ['11', '14', '17', '20']
|
standard: ['11', '14', '17', '20']
|
||||||
precompile: ['ON', 'OFF']
|
precompile: ['ON', 'OFF']
|
||||||
betafeature: ['ON', 'OFF']
|
betafeature: ['ON', 'OFF']
|
||||||
@@ -71,10 +71,10 @@ jobs:
|
|||||||
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-24.04
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
compiler: ['15', '14', '13', '12', '11']
|
compiler: ['19', '18', '17', '16', '15']
|
||||||
standard: ['11', '14', '17', '20']
|
standard: ['11', '14', '17', '20']
|
||||||
precompile: ['ON', 'OFF']
|
precompile: ['ON', 'OFF']
|
||||||
exclude:
|
exclude:
|
||||||
@@ -104,52 +104,19 @@ jobs:
|
|||||||
- name: Test
|
- name: Test
|
||||||
run: |
|
run: |
|
||||||
ctest --output-on-failure --test-dir build/
|
ctest --output-on-failure --test-dir build/
|
||||||
build-linux-old-gcc:
|
|
||||||
runs-on: Ubuntu-20.04
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
compiler: ['g++-8', 'g++-7']
|
|
||||||
standard: ['11', '14', '17', '20']
|
|
||||||
precompile: ['ON', 'OFF']
|
|
||||||
exclude:
|
|
||||||
- {compiler: 'g++-7', standard: '20'}
|
|
||||||
- {compiler: 'g++-8', standard: '17'}
|
|
||||||
- {compiler: 'g++-8', standard: '20'}
|
|
||||||
steps:
|
|
||||||
- name: Get number of CPU cores
|
|
||||||
uses: SimenB/github-actions-cpu-cores@v2
|
|
||||||
id: cpu-cores
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
submodules: true
|
|
||||||
- name: Install
|
|
||||||
run: |
|
|
||||||
sudo apt-get update
|
|
||||||
sudo apt-get install language-pack-fr # test serializer w/ locale
|
|
||||||
sudo apt-get install ${{ matrix.compiler }}
|
|
||||||
- name: Configure
|
|
||||||
run: |
|
|
||||||
cmake -B build/ -DCMAKE_CXX_COMPILER=${{ matrix.compiler }} -DCMAKE_CXX_STANDARD=${{ matrix.standard }} -DTOML11_BUILD_TESTS=ON -DTOML11_PRECOMPILE=${{ matrix.precompile }}
|
|
||||||
- name: Build
|
|
||||||
run: |
|
|
||||||
cmake --build build/ -j${{ steps.cpu-cores.outputs.count }}
|
|
||||||
- name: Test
|
|
||||||
run: |
|
|
||||||
ctest --output-on-failure --test-dir build/
|
|
||||||
|
|
||||||
build-linux-old-clang:
|
build-linux-old-clang:
|
||||||
runs-on: Ubuntu-20.04
|
runs-on: Ubuntu-22.04
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
compiler: ['10', '9', '8', '7', '6.0']
|
compiler: ['14', '13', '12', '11']
|
||||||
standard: ['11', '14', '17', '20']
|
standard: ['11', '14', '17', '20']
|
||||||
precompile: ['ON', 'OFF']
|
precompile: ['ON', 'OFF']
|
||||||
exclude:
|
exclude:
|
||||||
- {compiler: '6.0', standard: '20'}
|
- {compiler: '14', standard: '20'}
|
||||||
- {compiler: '7', standard: '20'}
|
- {compiler: '13', standard: '20'}
|
||||||
- {compiler: '8', standard: '20'}
|
- {compiler: '12', standard: '20'}
|
||||||
- {compiler: '9', standard: '20'}
|
- {compiler: '11', standard: '20'}
|
||||||
steps:
|
steps:
|
||||||
- name: Get number of CPU cores
|
- name: Get number of CPU cores
|
||||||
uses: SimenB/github-actions-cpu-cores@v2
|
uses: SimenB/github-actions-cpu-cores@v2
|
||||||
|
Reference in New Issue
Block a user