Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/clang-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: DoozyX/clang-format-lint-action@v0.16.2
- uses: DoozyX/clang-format-lint-action@v0.20
with:
source: '.'
exclude: ''
extensions: 'h,hpp,cpp'
clangFormatVersion: 16
clangFormatVersion: 20
style: file
inplace: True
- uses: EndBug/add-and-commit@v9
- uses: EndBug/add-and-commit@v10
with:
message: 'Committing clang-format changes'
4 changes: 2 additions & 2 deletions .github/workflows/clang-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ on:

jobs:
build:
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04

strategy:
fail-fast: false
matrix:
clang: [17, 18]
clang: [21, 22]
build_type: [Debug]
std: [23]

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: macos-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ on:

jobs:
build:
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04

strategy:
fail-fast: false
matrix:
gcc: [13, 14]
gcc: [14, 15]
build_type: [Debug]
std: [23]

Expand Down
27 changes: 14 additions & 13 deletions .github/workflows/modules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,20 @@ jobs:
configure_preset: "x64-vs"
build_preset: "x64-vs-build"
test_preset : "x64-vs-test"
# To be uncommented once GitHub Actions add GCC 15 or 16 with Ubuntu 26
# - runs_on: ubuntu-latest
# compiler: gcc-15
# configure_preset: "linux-debug"
# build_preset: "linux-debug-build"
# test_preset : "linux-debug-test"
# - runs_on: ubuntu-latest
# compiler: clang-18
# cc: clang
# cxx: clang++
# configure_preset: "linux-debug"
# build_preset: "linux-debug-build"
# test_preset : "linux-debug-test"
- runs_on: ubuntu-26.04
compiler: gcc-15
cc: gcc-15
cxx: g++-15
configure_preset: "linux"
build_preset: "linux-build"
test_preset : "linux-test"
- runs_on: ubuntu-26.04
compiler: clang-22
cc: clang-22
cxx: clang++-22
configure_preset: "linux"
build_preset: "linux-build"
test_preset : "linux-test"
steps:

- uses: actions/checkout@v6
Expand Down
29 changes: 6 additions & 23 deletions CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,6 @@
"value": "v145,host=x64,version=14.51"
}
},
{
"name": "x64-preview",
"displayName": "x64 Debug (MSVC v14.51 Preview)",
"inherits": "windows-base-preview",
"architecture": {
"value": "x64",
"strategy": "external"
}
},
{
"name": "windows-vs-base",
"hidden": true,
Expand All @@ -72,8 +63,8 @@
"architecture": "x64"
},
{
"name": "linux-debug",
"displayName": "Linux Debug",
"name": "linux",
"displayName": "Linux Debug (CI)",
"generator": "Ninja",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"installDir": "${sourceDir}/out/install/${presetName}",
Expand All @@ -98,12 +89,8 @@
"configuration": "Debug"
},
{
"name": "x64-preview-build",
"configurePreset": "x64-preview"
},
{
"name": "linux-debug-build",
"configurePreset": "linux-debug"
"name": "linux-build",
"configurePreset": "linux"
}
],
"testPresets": [
Expand All @@ -121,12 +108,8 @@
}
},
{
"name": "x64-preview-test",
"configurePreset": "x64-preview"
},
{
"name": "linux-debug-test",
"configurePreset": "linux-debug"
"name": "linux-test",
"configurePreset": "linux"
}
]
}
Loading